Browse Source

Add POST route for goals

master
Stephanie Gredell 1 year ago
parent
commit
427b281383
  1. 2
      main.go

2
main.go

@ -45,6 +45,8 @@ func main() {
r.GET("/welcome", pages.Welcome) r.GET("/welcome", pages.Welcome)
r.GET("/goals", pages.Goals) r.GET("/goals", pages.Goals)
// post routes
r.POST("/goals", pages.CreateGoal)
runErr := r.Run(":8080") runErr := r.Run(":8080")
if runErr != nil { if runErr != nil {

Loading…
Cancel
Save