fix merge issues
This commit is contained in:
commit
560a3dbc4b
3 changed files with 64 additions and 4 deletions
|
@ -1,14 +1,19 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
"github.com/labstack/gommon/log"
|
||||
)
|
||||
|
||||
func testService(c *gin.Context) {
|
||||
log.Debug("Test was successful.")
|
||||
c.JSON(http.StatusOK, gin.H{
|
||||
"message": "Hello World!"
|
||||
})
|
||||
c.JSON(http.StatusOK, gin.H{"message": "Hello World!"})
|
||||
}
|
||||
|
||||
func claimsByBarcode(c *gin.Context) {
|
||||
system := c.DefaultQuery("system", "upc")
|
||||
barcode := c.Query("barcode")
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue