This commit is contained in:
2025-03-07 18:12:52 +01:00
commit 683d152491
13 changed files with 984 additions and 0 deletions

14
src/main.py Normal file
View File

@ -0,0 +1,14 @@
import sys
import help
import PIL
def main():
if len(sys.argv) != 2:
help.display(sys.argv[0])
return
if (__name__ == "__main__"):
main()