chore: Update the start-sdk to use dependencies

This commit is contained in:
BluJ
2023-04-17 13:39:09 -06:00
parent 78076387ef
commit 4b74906ada
6 changed files with 73 additions and 110 deletions

View File

@@ -0,0 +1,15 @@
import { Dependency, PackageId } from "../types";
export function exists(id: PackageId) {
return {
id,
kind: "exists",
} as Dependency;
}
export function running(id: PackageId) {
return {
id,
kind: "running",
} as Dependency;
}