Initial native Linux parental control application

This commit is contained in:
2026-09-17 12:54:31 +05:00
commit 8b785b5480
15 changed files with 3262 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import time
from .database import initialize_database
from .scheduler import start_scheduler, stop_scheduler
def main():
initialize_database()
start_scheduler()
try:
while True:
time.sleep(60)
except KeyboardInterrupt:
pass
finally:
stop_scheduler()
if __name__ == "__main__":
main()