Skip to content

Commit 718d6b6

Browse files
committed
switched from gorilla to go-chi. Fixes #95
1 parent d0f4222 commit 718d6b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cmd/server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ var serverCmd = &cobra.Command{
4545
router.Use(middleware.Recoverer)
4646
router.Use(middleware.Timeout(60 * time.Second))
4747
router.Get("/", func(w http.ResponseWriter, r *http.Request) {
48-
w.Write([]byte("JR"))
48+
w.Write([]byte("JR is 7482!"))
4949
})
5050

5151
router.Route("/emitters", func(r chi.Router) {

0 commit comments

Comments
 (0)