Builder is used by input sources that create Entities.
| 30 | |
| 31 | // Builder is used by input sources that create Entities. |
| 32 | type Builder interface { |
| 33 | // Build returns an Entity based on the implementations internal logic, Errors are returned if state is invalid. |
| 34 | Build() (Entity, error) |
| 35 | } |
| 36 | |
| 37 | // base provides fields that are shared between all Entitys. |
| 38 | type base struct { |
no outgoing calls
no test coverage detected