File size: 283 Bytes
7e60a5e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import os
import sys
import fire
if os.path.dirname(os.path.abspath(__file__)) not in sys.path:
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
from src.gen import main
def entrypoint_main():
fire.Fire(main)
if __name__ == "__main__":
entrypoint_main()
|