Ocean/Tools/ResponseLanguage.go

11 lines
225 B
Go
Raw Normal View History

package Tools
import (
"net/http"
)
2015-06-17 15:44:52 +00:00
// Send the chosen language for the content.
func SendChosenLanguage(response http.ResponseWriter, lang Language) {
response.Header().Add(`Content-Language`, lang.Language)
}