Add startos/main.ts

Add initial Munin service main function
This commit is contained in:
2026-08-05 16:54:27 +00:00
parent 644c9460b3
commit 16bebdf1ea
+9
View File
@@ -0,0 +1,9 @@
import { createInterface } from '@start9labs/start-sdk'
export const main = createInterface({
volumeId: 'main',
run: async ({ effects }) => {
await effects.check.inform('Munin-bitcoin service running')
},
})