feat: Add DataAccessorBasedStore integration

This commit is contained in:
Joachim Van Herwegen
2020-09-30 12:07:31 +02:00
parent 9a857b7581
commit 9b26bbef2d
8 changed files with 218 additions and 45 deletions

View File

@@ -1,5 +1,7 @@
import type { HttpHandler } from '../../src/server/HttpHandler';
import type { ResourceStore } from '../../src/storage/ResourceStore';
export interface ServerConfig {
store: ResourceStore;
getHttpHandler: () => HttpHandler;
}