10 lines
157 B
Python
10 lines
157 B
Python
"""
|
|
Handlers package
|
|
Contains all API handlers
|
|
"""
|
|
|
|
from . import webhook
|
|
from . import health
|
|
from . import admin
|
|
|
|
__all__ = ["webhook", "health", "admin"] |