diff --git a/cmd/justguestbookd/main.go b/cmd/justguestbookd/main.go index 59ed641..2bce76d 100644 --- a/cmd/justguestbookd/main.go +++ b/cmd/justguestbookd/main.go @@ -51,8 +51,10 @@ func main() { srv.GET("/", hand.Entries) srv.POST("/", hand.New) + srv.PUT("/:entry", hand.Update) srv.DELETE("/:entry", hand.Delete) srv.POST("/:entry/reply", hand.Reply) + srv.PUT("/:entry/reply", hand.Update) srv.DELETE("/:entry/reply", hand.Delete) var network string