General validation (or none)
()
| 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 { |
no outgoing calls