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