1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-22 01:39:18 +08:00

22 lines
489 B
Go
Raw Normal View History

2023-03-29 14:58:28 +08:00
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[];
}
}