backend.ts 387 B

1234567891011121314
  1. export const NoctBotService = {
  2. getPing: {
  3. request: {} as { ping: string },
  4. response: {} as { text: string },
  5. },
  6. userInServer: {
  7. request: {} as { userId: string },
  8. response: {} as { exists: boolean },
  9. },
  10. userAuthorised: {
  11. request: {} as { userId: string },
  12. response: {} as { authorised: boolean },
  13. }
  14. };