StoreDeleter is an interface for data stores that defines a Delete method that has the task of removing a record.
| 41 | // StoreDeleter is an interface for data stores that defines a Delete method |
| 42 | // that has the task of removing a record. |
| 43 | type StoreDeleter interface { |
| 44 | Delete(record Record) error |
| 45 | } |
| 46 | |
| 47 | // StoreUpdater is an interface for data stores that defines a Update method |
| 48 | // that has the task of updating a record. |
nothing calls this directly
no outgoing calls
no test coverage detected