7 lines
101 B
Python
7 lines
101 B
Python
from fastapi import APIRouter
|
|
|
|
runx_router = APIRouter(
|
|
prefix="/api/runx",
|
|
tags=["RunX"],
|
|
)
|