Using Render() instead of Write()

This commit is contained in:
Manu Mtz-Almeida
2015-06-04 05:25:21 +02:00
parent 92475baba6
commit 1f56e50083
9 changed files with 15 additions and 15 deletions

View File

@ -7,7 +7,7 @@ package render
import "net/http"
type Render interface {
Write(http.ResponseWriter) error
Render(http.ResponseWriter) error
}
var (