15 lines
265 B
Go
15 lines
265 B
Go
package main
|
|
|
|
func testService(c *gin.Context) {
|
|
log.Debug("Test was successful.")
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"message": "Hello World!"
|
|
})
|
|
}
|
|
|
|
func claimsByBarcode(c *gin.Context) {
|
|
system := c.DefaultQuery("system", "upc")
|
|
barcode := c.Query("barcode")
|
|
}
|
|
|