(mode: StoreMode)
| 52 | } |
| 53 | |
| 54 | function createStoreForMode(mode: StoreMode): GraphStore { |
| 55 | if (mode.startsWith('server:')) { |
| 56 | return new ServerGraphStore(mode.slice('server:'.length)); |
| 57 | } |
| 58 | return createLadybugStore(); |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Drop-in full OpenTrace application component. |
no test coverage detected