| 8 | import { useAppStore } from '../store/app-state'; |
| 9 | |
| 10 | export class JSONDBDatabase { |
| 11 | documents: JSONDBClient<PersistedFullWorkflow> |
| 12 | constructor() { |
| 13 | this.documents = new JSONDBClient<PersistedFullWorkflow>("workflows"); |
nothing calls this directly
no outgoing calls
no test coverage detected