15 lines
468 B
Python
15 lines
468 B
Python
"""
|
|
isort:skip_file
|
|
"""
|
|
from .__version__ import __version__
|
|
from .app.base import JetforceApplication, Request, Response, RoutePattern, Status
|
|
from .app.static import StaticDirectoryApplication
|
|
from .app.composite import CompositeApplication
|
|
from .protocol import GeminiProtocol
|
|
from .server import GeminiServer
|
|
|
|
__title__ = "Jetforce Gemini Server"
|
|
__author__ = "Michael Lazar"
|
|
__license__ = "Floodgap Free Software License"
|
|
__copyright__ = "(c) 2020 Michael Lazar"
|