mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 10:05:28 +03:00
11 lines
222 B
Python
11 lines
222 B
Python
from .registry import Benchmarks, Benchmark
|
|
|
|
|
|
def main():
|
|
all_benchmarks: list[Benchmark] = Benchmarks.get_benchmarks()
|
|
|
|
for benchmark in all_benchmarks: pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main() |