Init API version one
This commit is contained in:
@ -1,3 +1 @@
|
|||||||
from . import user
|
from . import api
|
||||||
from . import hysteria
|
|
||||||
from . import warp
|
|
||||||
|
|||||||
1
core/scripts/webpanel/routers/api/__init__.py
Normal file
1
core/scripts/webpanel/routers/api/__init__.py
Normal file
@ -0,0 +1 @@
|
|||||||
|
from . import v1
|
||||||
7
core/scripts/webpanel/routers/api/v1/__init__.py
Normal file
7
core/scripts/webpanel/routers/api/v1/__init__.py
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
from fastapi import APIRouter
|
||||||
|
|
||||||
|
router = APIRouter()
|
||||||
|
|
||||||
|
|
||||||
|
# Import files so they are registered
|
||||||
|
from . import user # noqa
|
||||||
Reference in New Issue
Block a user