This commit is contained in:
Pedro Nasser
2016-08-01 19:23:31 -03:00
parent f9f1ffaac5
commit dfc4be9861
25 changed files with 137 additions and 160 deletions

11
api/server/ping.go Normal file
View File

@@ -0,0 +1,11 @@
package server
import (
"net/http"
"github.com/gin-gonic/gin"
)
func handlePing(c *gin.Context) {
c.JSON(http.StatusNotImplemented, "Not Implemented")
}