Files
1Panel/frontend/src/api/interface/command.ts
T

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;
}
}