mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-25 00:00:53 +00:00
20 lines
407 B
Go
20 lines
407 B
Go
export namespace Command {
|
|
export interface CommandInfo {
|
|
id: number;
|
|
name: string;
|
|
groupID: number;
|
|
command: string;
|
|
}
|
|
export interface CommandOperate {
|
|
id: number;
|
|
name: string;
|
|
groupID: number;
|
|
command: string;
|
|
}
|
|
export interface RedisCommand {
|
|
id: number;
|
|
name: string;
|
|
command: string;
|
|
}
|
|
}
|