Created
April 13, 2016 05:22
-
-
Save hirokazumiyaji/05eec540f39964f20396569a772f343f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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