This commit is contained in:
che
2026-07-15 09:41:56 +05:00
parent 6fff682f74
commit 1f0dd3afb7
26 changed files with 2402 additions and 1133 deletions
+11
View File
@@ -0,0 +1,11 @@
package sql_executor
import (
"github.com/gin-gonic/gin"
"gorm.io/gorm"
)
func RegisterApp(r *gin.Engine, db *gorm.DB) {
controller := NewSQLController(db)
r.POST("/api/sql/execute", controller.Execute)
}