This commit is contained in:
jxxghp
2023-06-19 15:49:24 +08:00
parent 5f48d9d4a2
commit e9e7bcc206
2 changed files with 16 additions and 16 deletions

View File

@ -11,7 +11,7 @@ router = APIRouter()
@router.get("/", summary="运行插件方法", response_model=schemas.Response)
@router.post("/")
@router.post("/", summary="运行插件方法", response_model=schemas.Response)
async def run_plugin_method(plugin_id: str, method: str,
_: User = Depends(get_current_active_user),
*args,