diff --git a/main.go b/main.go index 840e3d7..2b6388c 100644 --- a/main.go +++ b/main.go @@ -8,7 +8,7 @@ import ( func main() { http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { - fmt.Fprintln(w, "Hello World!") + fmt.Fprintln(w, "Hello GitOps!") }) log.Fatalf("error: %s", http.ListenAndServe(":8080", nil)) }