vise/go/resource/resource.go
2023-03-31 10:52:04 +01:00

8 lines
147 B
Go

package resource
type Fetcher interface {
Get(symbol string) (string, error)
Render(symbol string, values map[string]string) (string, error)
}