func()

in api/contactcenteranalysis/get_languages.go [27:32]


func (h *handler) getLanguagesHandler(w http.ResponseWriter, r *http.Request) {
	langs := &getLanguagesHandlerResponse{
		Languages: supportedLanguages,
	}
	hd.RespondJSON(w, r, http.StatusOK, langs)
}