Files
kubelogin/pkg/templates/httpserver/httpserver.go
Hidetake Iwata 77a6b91be8 Change authentication success page more descriptive (#312)
* Refactor: rename to authcode_browser.go

* Change authentication success page more descriptive
2020-06-23 15:00:58 +09:00

18 lines
434 B
Go

package main
import (
"log"
"net/http"
"github.com/int128/kubelogin/pkg/templates"
)
func main() {
http.HandleFunc("/AuthCodeBrowserSuccessHTML", func(w http.ResponseWriter, r *http.Request) {
w.Header().Add("content-type", "text/html")
_, _ = w.Write([]byte(templates.AuthCodeBrowserSuccessHTML))
})
log.Printf("http://localhost:8000/AuthCodeBrowserSuccessHTML")
log.Fatal(http.ListenAndServe("127.0.0.1:8000", nil))
}