10 lines
119 B
Python
10 lines
119 B
Python
|
from .cli import CLIInterface
|
||
|
|
||
|
|
||
|
def main():
|
||
|
CLIInterface.run_application()
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|