44cfc8253b
This is an implementation of hercules-ci-effects in python.
10 lines
187 B
Python
Executable file
10 lines
187 B
Python
Executable file
#!/usr/bin/env python
|
|
import sys
|
|
from pathlib import Path
|
|
sys.path.append(str(Path(__file__).parent.parent))
|
|
|
|
from hercules_effects.cli import main
|
|
|
|
if __name__ == '__main__':
|
|
main()
|