mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
19 lines
343 B
TypeScript
19 lines
343 B
TypeScript
import { Checker } from "./emverLite/mod"
|
|
|
|
export class Dependency {
|
|
constructor(
|
|
readonly data:
|
|
| {
|
|
type: "running"
|
|
versionSpec: Checker
|
|
url: string
|
|
healthChecks: string[]
|
|
}
|
|
| {
|
|
type: "exists"
|
|
versionSpec: Checker
|
|
url: string
|
|
},
|
|
) {}
|
|
}
|