* Session configuration
| 19 | * Session configuration |
| 20 | */ |
| 21 | interface SessionConfig { |
| 22 | maxSessions: number; // Max sessions per user |
| 23 | sessionTTL: number; // Session TTL in seconds |
| 24 | cleanupInterval: number; // Cleanup interval in seconds |
| 25 | maxConcurrentDevices: number; // Max concurrent devices per user |
| 26 | } |
| 27 | |
| 28 | /** |
| 29 | * Session Service for D1-based session management |
nothing calls this directly
no outgoing calls
no test coverage detected