mirror of
https://github.com/velocitatem/PHANTOM.git
synced 2026-05-31 16:43:36 +00:00
8 lines
162 B
Python
8 lines
162 B
Python
from __future__ import annotations
|
|
|
|
|
|
def run_benchmark_cli(raw_args: list[str] | None = None) -> None:
|
|
from ..benchmark import run_cli
|
|
|
|
run_cli(raw_args)
|