10 lines
164 B
Python
Executable File
10 lines
164 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
from oqamaint.cli import CommandLineInterface
|
|
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
app = CommandLineInterface()
|
|
sys.exit(app.main())
|