mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-07-27 05:47:47 +00:00
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com> Co-authored-by: 谨欣 <echo.cmy@antgroup.com> Co-authored-by: 严志勇 <yanzhiyong@tiansuixiansheng.com> Co-authored-by: yanzhiyong <932374019@qq.com>
13 lines
176 B
TypeScript
13 lines
176 B
TypeScript
import { Role } from '@/types/userinfo';
|
|
|
|
interface Props {
|
|
role: Role;
|
|
}
|
|
|
|
/**
|
|
* 查询管理员列表
|
|
*/
|
|
export const queryAdminList = (_data: Props) => {
|
|
return [];
|
|
};
|