forked from Shifty/pyserveX
12 lines
220 B
Python
12 lines
220 B
Python
"""
|
|
PyServe - HTTP web server written on Python
|
|
"""
|
|
|
|
__version__ = "0.6.0"
|
|
__author__ = "Ilya Glazunov"
|
|
|
|
from .server import PyServeServer
|
|
from .config import Config
|
|
|
|
__all__ = ["PyServeServer", "Config", "__version__"]
|