| 10 | ) |
| 11 | |
| 12 | type Includable interface { |
| 13 | CanonicalName() string |
| 14 | FileContent(subpath string) ([]byte, error) |
| 15 | Hash() string |
| 16 | LockfileKey() string |
| 17 | } |
| 18 | |
| 19 | func parseIncludable(includableRef, workingDir string) (Includable, error) { |
| 20 | ref, err := flake.ParseRef(includableRef) |
no outgoing calls
no test coverage detected