mirror of
https://github.com/optim-enterprises-bv/openlan-cgw.git
synced 2026-01-02 21:14:56 +00:00
9 lines
163 B
Python
Executable File
9 lines
163 B
Python
Executable File
#!/usr/bin/env python3
|
|
from src.utils import parse_args
|
|
from src.simulation_runner import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
args = parse_args()
|
|
main(args)
|