darf-chat/service/common.ts
2025-10-17 11:11:14 +07:00

5 lines
179 B
TypeScript

import type { SystemFeatures } from '@/types/feature';
import { get } from './base';
export const getSystemFeatures = () => {
return get<SystemFeatures>('/system-features');
};