()
| 20 | // Lazy-initialized database instance for user persistence |
| 21 | let slackDb: SlackDatabase | null = null; |
| 22 | function getSlackDb(): SlackDatabase { |
| 23 | if (!slackDb) { |
| 24 | slackDb = new SlackDatabase(); |
| 25 | } |
| 26 | return slackDb; |
| 27 | } |
| 28 | |
| 29 | // Lazy-initialized working group database for access checks |
| 30 | let workingGroupDb: WorkingGroupDatabase | null = null; |
no outgoing calls
no test coverage detected