import type { Compose } from "./compose.d.ts"
type Spec = string | Compose
export type Deployment = {
kind: string
spec: Spec
promocode?: string
}
export type DeploymentResponse = Deployment & {
uuid: string
payLink: string