backend.ts 262 B

12345678910
  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. };