mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-22 01:39:18 +08: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[];
|
||
|
}
|
||
|
}
|