()
| 32 | private _honoServer!: HonoServer; |
| 33 | |
| 34 | constructor() { |
| 35 | this._initDatabase(); |
| 36 | this._initSessionManager(); |
| 37 | this._initTaskDispatcher(); |
| 38 | this._initMessageGateway(); |
| 39 | this._initServer(); |
| 40 | } |
| 41 | |
| 42 | get database(): DataConnection { |
| 43 | return this._database; |
nothing calls this directly
no test coverage detected