initial commit

This commit is contained in:
Илья Глазунов
2025-09-01 23:49:50 +03:00
commit 83cb7d68b0
12 changed files with 2028 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
"""
PyServe - HTTP веб-сервер с функционалом nginx
"""
__version__ = "0.6.0"
__author__ = "Илья Глазунов"
from .server import PyServeServer
from .config import Config
__all__ = ["PyServeServer", "Config"]