run.py 231 B

12345678910111213
  1. #!/usr/bin/env python3
  2. import sys, os
  3. THIS_DIR = os.path.dirname(__file__)
  4. # ensure that we can load the ctypesgen library
  5. sys.path.insert(0, THIS_DIR)
  6. import ctypesgen.main
  7. if __name__ == "__main__":
  8. ctypesgen.main.main()