()
| 10 | export class JSONDBDatabase { |
| 11 | documents: JSONDBClient<PersistedFullWorkflow> |
| 12 | constructor() { |
| 13 | this.documents = new JSONDBClient<PersistedFullWorkflow>("workflows"); |
| 14 | } |
| 15 | |
| 16 | async getDocs(): Promise<PersistedFullWorkflow[]> { |
| 17 | const ret = await this.documents.getDocuments(); |
nothing calls this directly
no outgoing calls
no test coverage detected