export interface ICron {
    id: string;
    time: string;
    action: string;
    serverId?: string;
    args?: any[];
}
export interface ICronConfigs {
    [serverType: string]: ICron[];
}
