From 16bebdf1ead4a584065809d701355bb0efead917 Mon Sep 17 00:00:00 2001 From: Unheard0840 Date: Wed, 5 Aug 2026 16:54:27 +0000 Subject: [PATCH] Add startos/main.ts Add initial Munin service main function --- startos/main.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 startos/main.ts diff --git a/startos/main.ts b/startos/main.ts new file mode 100644 index 0000000..6fbd83f --- /dev/null +++ b/startos/main.ts @@ -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') + }, +}) \ No newline at end of file