mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-28 06:51:16 +08:00
15 lines
385 B
Python
15 lines
385 B
Python
|
|
"""Example dashboard plugin — backend API routes.
|
||
|
|
|
||
|
|
Mounted at /api/plugins/example/ by the dashboard plugin system.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from fastapi import APIRouter
|
||
|
|
|
||
|
|
router = APIRouter()
|
||
|
|
|
||
|
|
|
||
|
|
@router.get("/hello")
|
||
|
|
async def hello():
|
||
|
|
"""Simple greeting endpoint to demonstrate plugin API routes."""
|
||
|
|
return {"message": "Hello from the example plugin!", "plugin": "example", "version": "1.0.0"}
|