(agent Agent)
| 28 | // Repository is an interface used to add, get, or update Agents from a data source |
| 29 | type Repository interface { |
| 30 | Add(agent Agent) error |
| 31 | Get(id uuid.UUID) (Agent, error) |
| 32 | GetAll() (agents []Agent) |
| 33 | Remove(id uuid.UUID) error |
no outgoing calls
no test coverage detected