Entry is a single todo entry
| 17 | |
| 18 | // Entry is a single todo entry |
| 19 | type Entry struct { |
| 20 | ID string `db:"id"` |
| 21 | Name string `db:"name"` |
| 22 | Description string `db:"description"` |
| 23 | TenantID string `db:"tenant_id"` |
| 24 | } |
no outgoing calls
no test coverage detected