PowerEngine/modelRT/handler/model_load.go

17 lines
278 B
Go
Raw Normal View History

2024-11-12 16:39:14 +08:00
package handler
import (
"fmt"
"modelRT/database"
"github.com/gin-gonic/gin"
)
// ModelLoad define model load process API
func ModelLoad(ctx *gin.Context) {
ctx.Writer.Write([]byte("Hi Boy"))
pgClient := database.GetPostgresDBInstance(ctx, "")
fmt.Println(pgClient)
}