Add Fulcrum dependency

This commit is contained in:
Unheard0840
2026-08-08 08:01:30 +02:00
parent e4a29843ab
commit 86cdd37809
2 changed files with 11 additions and 14 deletions
+8 -10
View File
@@ -1,13 +1,11 @@
import { sdk } from './sdk'
export const setDependencies = sdk.setupDependencies(
async ({ effects }) => {
return {
fulcrum: {
kind: 'running',
versionRange: '*',
healthChecks: [],
},
}
},
)
async ({ effects }) => ({
fulcrum: {
kind: 'running',
versionRange: '>=0',
healthChecks: ['primary'],
},
}),
)