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