mirror of
https://github.com/FJurmanovic/wallet-go-api.git
synced 2026-02-06 14:18:12 +00:00
15 lines
181 B
Go
15 lines
181 B
Go
package api
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/go-pg/pg/v10"
|
|
)
|
|
|
|
func Init(s *gin.Engine, db *pg.DB) {
|
|
Routes(s, db)
|
|
}
|
|
|
|
type API struct {
|
|
Api string `json:"api"`
|
|
}
|