balibabu
feat: add CreateFlowModal #918 (#1343)
9ee6e3a
raw
history blame
109 Bytes
export interface ResponseType<T = any> {
retcode: number;
data: T;
retmsg: string;
status: number;
}