8 lines
118 B
Go
8 lines
118 B
Go
|
package template
|
||
|
|
||
|
import "io"
|
||
|
|
||
|
type Interface interface {
|
||
|
Render(w io.Writer, name string, data interface{}) error
|
||
|
}
|