()
| 265 | } |
| 266 | |
| 267 | export async function getSystemTools(): Promise<SystemToolInfo[]> { |
| 268 | const { data } = await api.get<SystemToolInfo[]>('/system/tools'); |
| 269 | return data; |
| 270 | } |
| 271 | |
| 272 | export async function getProjectRules(): Promise<RulesResponse> { |
| 273 | const { data } = await api.get<RulesResponse>('/project/rules'); |