Skip to content

Instantly share code, notes, and snippets.

@hirokazumiyaji
Created April 13, 2016 05:22
Show Gist options
  • Save hirokazumiyaji/05eec540f39964f20396569a772f343f to your computer and use it in GitHub Desktop.
Save hirokazumiyaji/05eec540f39964f20396569a772f343f to your computer and use it in GitHub Desktop.
package main
import (
"github.com/gin-gonic/gin"
"controllers"
)
func main() {
r := gin.Default()
r.POST("/users", controllers.HandleRegisterUser)
r.Run()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment