Files
MokPyo/app/api/v1/__init__.py

9 lines
156 B
Python

"""
API v1 package for MokPyo application.
- Central router for version 1 of the API
"""
from .endpoints import router as v1_router
__version__ = "1.0.0"