Dateien nach "pg26" hochladen

work in progress implementation of new framework
This commit is contained in:
2025-10-30 00:20:18 +00:00
parent 87cfa83af9
commit bd19860ae7
5 changed files with 374 additions and 0 deletions

16
pg26/main.py Normal file
View File

@@ -0,0 +1,16 @@
import pnd
import _thread
import time
print(pnd.cfg.tasks.gc_tasks)
## init pundo system
runtime = pnd.rt()
runtime.init(0)
## run backgroundtasks
_thread.start_new_thread(runtime.backgroundTask, ())
## run main Task
runtime.run()