pyserveX/pyserve/__init__.py
Илья Глазунов 83cb7d68b0 initial commit
2025-09-01 23:49:50 +03:00

12 lines
242 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""
PyServe - HTTP веб-сервер с функционалом nginx
"""
__version__ = "0.6.0"
__author__ = "Илья Глазунов"
from .server import PyServeServer
from .config import Config
__all__ = ["PyServeServer", "Config"]