From c8be701f0e6cb4c7d309f16320d6ff91dd2b1f9a Mon Sep 17 00:00:00 2001 From: J H Date: Mon, 18 Mar 2024 16:23:09 -0600 Subject: [PATCH] chore: Add in the mounts --- sdk/lib/StartSdk.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sdk/lib/StartSdk.ts b/sdk/lib/StartSdk.ts index b3b417802..424470608 100644 --- a/sdk/lib/StartSdk.ts +++ b/sdk/lib/StartSdk.ts @@ -71,6 +71,7 @@ import { getServiceInterfaces } from "./util/getServiceInterfaces" import { getStore } from "./store/getStore" import { CommandOptions, MountOptions, Overlay } from "./util/Overlay" import { splitCommand } from "./util/splitCommand" +import { Mounts } from "./mainFn/Mounts" // prettier-ignore type AnyNeverCond = @@ -239,6 +240,11 @@ export class StartSdk { ) }, + Mounts: { + of() { + return Mounts.of() + }, + }, HealthCheck: { of: healthCheck, },