vise/go/resource/resource.go

8 lines
147 B
Go
Raw Normal View History

2023-03-31 11:52:04 +02:00
package resource
type Fetcher interface {
Get(symbol string) (string, error)
Render(symbol string, values map[string]string) (string, error)
}