| 4 | import { getRootPgPool } from "./installDatabasePools"; |
| 5 | |
| 6 | interface DbSession { |
| 7 | uuid: string; |
| 8 | user_id: string; |
| 9 | created_at: Date; |
| 10 | last_active: Date; |
| 11 | } |
| 12 | |
| 13 | export interface UserSpec { |
| 14 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected