25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112
  1. #!/usr/bin/python3
  2. import os, sys
  3. base_dir = sys.path[0]
  4. sys.path[0] = os.path.join(base_dir, "lib")
  5. import invoice.cli
  6. if __name__ == '__main__':
  7. invoice.cli.Application(
  8. template_path = os.path.join(base_dir, "templates")
  9. ).run()