add swagger.yml and test route

This commit is contained in:
katefort 2025-04-08 19:11:23 -05:00
parent 735de8d657
commit 0254ec2525
3 changed files with 124 additions and 2 deletions

View file

@ -5,4 +5,10 @@ func testService(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{
"message": "Hello World!"
})
}
}
func claimsByBarcode(c *gin.Context) {
system := c.DefaultQuery("system", "upc")
barcode := c.Query("barcode")
}