| 34 | } |
| 35 | |
| 36 | type LoadableSimple interface { |
| 37 | Validate() error // General validation (or none) |
| 38 | Filepath() string // Relative file path to some base directory - can include subfolders |
| 39 | } |
| 40 | |
| 41 | type Loadable[K comparable] interface { |
| 42 | Id() K // Must be a unique identifier for the data |
no outgoing calls
no test coverage detected