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