| 6 | import { count, ilike, or } from "drizzle-orm"; |
| 7 | |
| 8 | interface GetUsersInput { |
| 9 | page: number; |
| 10 | totalItems: number; |
| 11 | search?: string | null; |
| 12 | } |
| 13 | |
| 14 | export interface GetUsersResponse { |
| 15 | items: User[]; |
nothing calls this directly
no outgoing calls
no test coverage detected