11 lines
253 B
TypeScript
11 lines
253 B
TypeScript
import { sdk } from './sdk'
|
|
|
|
export const setDependencies = sdk.setupDependencies(
|
|
async ({ effects }) => ({
|
|
fulcrum: {
|
|
kind: 'running',
|
|
versionRange: '>=2.1.0:3-beta.1',
|
|
healthChecks: ['primary', 'sync-progress'],
|
|
},
|
|
}),
|
|
) |