Added _soypak.py

Main entry script for soypak. Preinitalisation will occur here and runs the cli modules.
This commit is contained in:
Ethan Smith-Coss 2023-07-04 20:50:40 +01:00
parent 50f11060e6
commit 14864aff8f
Signed by: TheOnePath
GPG Key ID: 4E7D436CE1A0BAF1

6
soypak/_soypak.py Normal file
View File

@ -0,0 +1,6 @@
from soypak.cli import soypakcli
if __name__ == "__main__":
c = soypakcli.SoypakCLI()
c.run()