(req dto.AgentAccountVerifyReq)
| 1257 | } |
| 1258 | |
| 1259 | func (a AgentService) VerifyAccount(req dto.AgentAccountVerifyReq) error { |
| 1260 | _, err := resolveAgentAccountInput(req.Provider, req.APIKey, req.BaseURL) |
| 1261 | return err |
| 1262 | } |
| 1263 | |
| 1264 | func (a AgentService) DeleteAccount(req dto.AgentAccountDeleteReq) error { |
| 1265 | if exists, _ := agentRepo.GetFirst(repo.WithByAccountID(req.ID)); exists != nil && exists.ID > 0 { |
nothing calls this directly
no test coverage detected