mirror of
https://github.com/RedDeadDepresso/KKAFIO.git
synced 2025-12-22 09:20:02 +00:00
17 lines
231 B
Python
17 lines
231 B
Python
from app.common.config import cfg
|
|
|
|
|
|
class Request:
|
|
def __init__(self) -> None:
|
|
pass
|
|
|
|
|
|
class Handler:
|
|
def __init__(self) -> None:
|
|
pass
|
|
|
|
def set_next(self):
|
|
pass
|
|
|
|
def handle(self):
|
|
pass |