feat: 完成数据库前端页面

This commit is contained in:
ssongliu
2022-10-20 18:45:47 +08:00
committed by ssongliu
parent b2653c2aef
commit 2c529e8fa3
22 changed files with 790 additions and 52 deletions

View File

@@ -1,6 +1,9 @@
package router
import (
"html/template"
"net/http"
v1 "github.com/1Panel-dev/1Panel/backend/app/api/v1"
"github.com/1Panel-dev/1Panel/backend/docs"
"github.com/1Panel-dev/1Panel/backend/i18n"
@@ -11,8 +14,6 @@ import (
"github.com/gin-gonic/gin"
swaggerfiles "github.com/swaggo/files"
ginSwagger "github.com/swaggo/gin-swagger"
"html/template"
"net/http"
)
func setWebStatic(rootRouter *gin.Engine) {
@@ -78,6 +79,7 @@ func Routers() *gin.Engine {
systemRouter.InitCronjobRouter(PrivateGroup)
systemRouter.InitSettingRouter(PrivateGroup)
systemRouter.InitAppRouter(PrivateGroup)
systemRouter.InitDatabaseRouter(PrivateGroup)
}
return Router