mirror of
https://github.com/outbackdingo/openlan-cgw.git
synced 2026-01-27 18:19:52 +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)
|