8 lines
147 B
Go
8 lines
147 B
Go
|
package resource
|
||
|
|
||
|
|
||
|
type Fetcher interface {
|
||
|
Get(symbol string) (string, error)
|
||
|
Render(symbol string, values map[string]string) (string, error)
|
||
|
}
|