mirror of
https://git.pleroma.social/pleroma/relay.git
synced 2025-04-19 17:16:42 +00:00
11 lines
178 B
Python
11 lines
178 B
Python
import aiohttp.web
|
|
|
|
from . import app
|
|
from .http_debug import STATS
|
|
|
|
|
|
async def stats(request):
|
|
return aiohttp.web.json_response(STATS)
|
|
|
|
|
|
app.router.add_get('/stats', stats)
|