mirror of
https://github.com/zc-zhangchen/any-auto-register.git
synced 2026-05-08 08:14:04 +08:00
10 lines
199 B
Python
10 lines
199 B
Python
from fastapi import APIRouter
|
|
from core.registry import list_platforms
|
|
|
|
router = APIRouter(prefix="/platforms", tags=["platforms"])
|
|
|
|
|
|
@router.get("")
|
|
def get_platforms():
|
|
return list_platforms()
|