| 6 | import { createSpace } from './services'; |
| 7 | |
| 8 | interface Setup { |
| 9 | displayName?: string | null; |
| 10 | email: string; |
| 11 | password: string; |
| 12 | } |
| 13 | |
| 14 | export const setup = onCall<Setup>(async request => { |
| 15 | logger.info('[setup] data: ' + JSON.stringify(request.data)); |
nothing calls this directly
no outgoing calls
no test coverage detected