(req: AI.BindDomain)
| 27 | }; |
| 28 | |
| 29 | export const bindDomain = (req: AI.BindDomain) => { |
| 30 | return http.post(`/ai/domain/bind`, req); |
| 31 | }; |
| 32 | |
| 33 | export const getBindDomain = (req: AI.BindDomainReq) => { |
| 34 | return http.post<AI.BindDomainRes>(`/ai/domain/get`, req); |