Update index.ts

This commit is contained in:
Clove 2026-06-27 17:37:26 +01:00 committed by GitHub
parent 287e7e5660
commit c9778e9176
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 4 deletions

View File

@ -66,10 +66,17 @@ export default {
return json({ return json({
success: true, success: true,
data: { data: {
service: "dough-restful", service: "Doughmination Restful",
description: "Combined Discord presence + profile/badges API.", description: "Combined Discord presence + profile/badges API.",
repository_url: "https://git.gay/doughmination/dough-restful", licence: "ESAL-2.0",
endpoints: ["/v1/users/:id", "/v1/users/:id/presence", "/v1/users/:id/profile", "/socket"], repository_url: "https://git.gay/doughmination/restful",
main_endpoint: "/v1/users/:id",
websocket: "/socket",
healthcheck: "/status",
other_endpoints: ["/v1/users/:id/presence", "/v1/users/:id/profile"],
},
authors: {
doughmination: "https://git.gay/doughmination",
} as any, } as any,
}); });
} }