Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.16 KB | None | 0 0
  1.     v1 := g.Group("/api/v1/transactions")
  2.     {
  3.         v1.GET("/", apis.GetTransactions)
  4.         v1.GET("/:id", apis.GetTransaction)
  5.         v1.POST("/", apis.CreateTransaction)
  6.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement