Files
munin-bitcoin/startos/dependencies.ts
T
2026-08-06 20:54:00 +00:00

13 lines
239 B
TypeScript

import { sdk } from './sdk'
export const setDependencies = sdk.setupDependencies(
async ({ effects }) => {
return {
fulcrum: {
kind: 'running',
versionRange: '*',
healthChecks: [],
},
}
},
)