11 lines
170 B
Python
11 lines
170 B
Python
import sys
|
|
import os
|
|
|
|
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), 'src')))
|
|
|
|
from src.cli import cli
|
|
|
|
|
|
if __name__ == "__main__":
|
|
cli()
|