Variable defines an interface to load a variable
| 9 | |
| 10 | // Variable defines an interface to load a variable |
| 11 | type Variable interface { |
| 12 | Load(ctx context.Context, definition *latest.Variable) (interface{}, error) |
| 13 | } |
| 14 | |
| 15 | // RuntimeResolver fills in runtime variables and cached ones |
| 16 | type RuntimeResolver interface { |
no outgoing calls
no test coverage detected