mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-27 00:00:59 +00:00
17 lines
342 B
Go
17 lines
342 B
Go
export namespace Command {
|
|
export interface CommandInfo {
|
|
id: number;
|
|
type: string;
|
|
name: string;
|
|
groupID: number;
|
|
command: string;
|
|
}
|
|
export interface CommandOperate {
|
|
id: number;
|
|
type: string;
|
|
name: string;
|
|
groupID: number;
|
|
command: string;
|
|
}
|
|
}
|