mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-25 00:00:53 +00:00
22 lines
489 B
Go
22 lines
489 B
Go
import { CommonModel, ReqPage } from '.';
|
|
export namespace Runtime {
|
|
export interface Runtime extends CommonModel {
|
|
name: string;
|
|
appDetailId: string;
|
|
image: string;
|
|
workDir: string;
|
|
dockerCompose: string;
|
|
env: string;
|
|
params: string;
|
|
type: string;
|
|
}
|
|
|
|
export interface RuntimeReq extends ReqPage {
|
|
name: string;
|
|
}
|
|
|
|
export interface RuntimeDTO extends Runtime {
|
|
websites: string[];
|
|
}
|
|
}
|