Ocean/Tools/ResponseLanguage.go
2015-06-17 17:44:52 +02:00

11 lines
225 B
Go

package Tools
import (
"net/http"
)
// Send the chosen language for the content.
func SendChosenLanguage(response http.ResponseWriter, lang Language) {
response.Header().Add(`Content-Language`, lang.Language)
}