This commit is contained in:
2026-04-16 18:58:18 +02:00
commit fa1d01527d
124 changed files with 13989 additions and 0 deletions

9
run.py Normal file
View File

@@ -0,0 +1,9 @@
import sys
import GramAddict
if __name__ == "__main__":
try:
GramAddict.run()
except KeyboardInterrupt:
print("\n\nGracefully exiting due to KeyboardInterrupt (Ctrl+C).")
sys.exit(0)