registry/utils/registry/rpsl
2020-06-26 09:07:42 -06:00

9 lines
136 B
Python
Executable file

#!/usr/bin/env python3
"run main code"
import sys
from main import run
if __name__ == '__main__':
code = run()
sys.exit(code)