mirror of https://github.com/gin-gonic/gin.git
Fixing quotes
This commit is contained in:
parent
bf1ecfcf70
commit
42c577db0c
|
@ -82,8 +82,8 @@ func main() {
|
||||||
v2 := r.Group("/v2")
|
v2 := r.Group("/v2")
|
||||||
{
|
{
|
||||||
v2.POST("/login", loginEndpoint)
|
v2.POST("/login", loginEndpoint)
|
||||||
v2.POST("/submit"", submitEndpoint)
|
v2.POST("/submit", submitEndpoint)
|
||||||
v2.POST("/read"", readEndpoint)
|
v2.POST("/read", readEndpoint)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Listen and server on 0.0.0.0:8080
|
// Listen and server on 0.0.0.0:8080
|
||||||
|
|
Loading…
Reference in New Issue