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
12 lines
220 B
Python
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__"]
|