Adds context.File(path)

This commit is contained in:
Manu Mtz-Almeida 2014-07-17 02:01:42 +02:00
parent 0ca4d36b76
commit 8ed55606c3
1 changed files with 5 additions and 0 deletions

View File

@ -255,3 +255,8 @@ func (c *Context) Data(code int, contentType string, data []byte) {
} }
c.Writer.Write(data) c.Writer.Write(data)
} }
// Writes the specified file into the body stream
func (c *Context) File(filepath string) {
http.ServeFile(c.Writer, c.Request, filepath)
}