| 13 | } |
| 14 | |
| 15 | export interface InitUserResponse { |
| 16 | data: { |
| 17 | id: string; |
| 18 | username: string; |
| 19 | roles: string[]; |
| 20 | isValid: boolean; |
| 21 | createdAt: string; |
| 22 | updatedAt: string; |
| 23 | }; |
| 24 | } |
| 25 | |
| 26 | export const setupService = { |
| 27 | async getSetupStatus(): Promise<SetupStatusResponse> { |
nothing calls this directly
no outgoing calls
no test coverage detected