From 8bd52ce44e88d7b18ce839eeab694eb5723e4806 Mon Sep 17 00:00:00 2001 From: Unheard0840 Date: Wed, 5 Aug 2026 16:48:11 +0000 Subject: [PATCH] Add startos/index.ts Add StartOS SDK entry point --- startos/index.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 startos/index.ts diff --git a/startos/index.ts b/startos/index.ts new file mode 100644 index 0000000..1770074 --- /dev/null +++ b/startos/index.ts @@ -0,0 +1,13 @@ +/** + * Plumbing. DO NOT EDIT. + */ +export { createBackup } from './backups' +export { main } from './main' +export { init, uninit } from './init' +export { actions } from './actions' + +import { buildManifest } from '@start9labs/start-sdk' +import { manifest as sdkManifest } from './manifest' +import { versionGraph } from './versions' + +export const manifest = buildManifest(versionGraph, sdkManifest) \ No newline at end of file