create working test endpoint

This commit is contained in:
katefort 2025-04-17 15:54:33 -05:00
parent 560a3dbc4b
commit c1930d6821
11 changed files with 134 additions and 66 deletions

9
cmd/server/main.go Normal file
View file

@ -0,0 +1,9 @@
package main
import (
"vegan-barcode/internal/api"
)
func main() {
api.BindRoutes()
}