pyserveX/pyserve/__init__.py
Илья Глазунов 1b462bd5f0
All checks were successful
Lint Code / lint (push) Successful in 40s
CI/CD Pipeline / lint (push) Successful in 0s
Run Tests / test (3.12) (push) Successful in 54s
Run Tests / test (3.13) (push) Successful in 52s
CI/CD Pipeline / test (push) Successful in 0s
CI/CD Pipeline / build-and-release (push) Has been skipped
CI/CD Pipeline / notify (push) Successful in 0s
bump version in __init__.py and some changes in .gitignore
2025-12-03 00:30:18 +03:00

12 lines
220 B
Python

"""
PyServe - HTTP web server written on Python
"""
__version__ = "0.7.0"
__author__ = "Ilya Glazunov"
from .server import PyServeServer
from .config import Config
__all__ = ["PyServeServer", "Config", "__version__"]