run.py 251 B

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