1
0
Fork 0

Add entrypoint

This commit is contained in:
trueold89 2024-03-21 07:25:47 +03:00
parent 643d70bd20
commit a934589c4f
Signed by: trueold89
GPG Key ID: C122E85DD49E6B30
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
from sllo.Classes import Interface
def main() -> None:
interface = Interface()
try:
interface.open()
except ValueError as error:
print(f"\n{error}")
interface.help()
if __name__ == "__main__":
main()