()
| 25 | |
| 26 | export const setupService = { |
| 27 | async getSetupStatus(): Promise<SetupStatusResponse> { |
| 28 | const response = await client.get<SetupStatusResponse>("/setup/status"); |
| 29 | return response.data; |
| 30 | }, |
| 31 | |
| 32 | async initUser(userData: InitUserRequest): Promise<InitUserResponse> { |
| 33 | const response = await client.post<InitUserResponse>( |
nothing calls this directly
no outgoing calls
no test coverage detected