first commit

This commit is contained in:
2026-01-04 14:32:01 +03:00
commit f7ceacd07e
15 changed files with 2619 additions and 0 deletions

11
main.py Normal file
View File

@@ -0,0 +1,11 @@
from __future__ import annotations
from server import run
def main() -> None:
run()
if __name__ == "__main__":
main()