🚧 Trigger feature build

This commit is contained in:
Maxim Lebedev 2023-11-03 23:51:36 +06:00
parent 737c739860
commit 436fe07805
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ func main() {
srv := http.Server{
Addr: ":3000",
Handler: http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
fmt.Fprintln(w, "Hello, dev World!")
fmt.Fprintln(w, "Hello, feature World!")
}),
}