mirror of
https://github.com/GAM-team/GAM.git
synced 2026-06-23 07:31:36 +00:00
11 lines
205 B
Python
Executable File
11 lines
205 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""Provides backwards compatibility for calling gam as a single .py file"""
|
|
|
|
import sys
|
|
|
|
from gam.__main__ import main
|
|
|
|
# Run from command line
|
|
if __name__ == '__main__':
|
|
main()
|