You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
315 B
15 lines
315 B
package vTool
|
|
|
|
import (
|
|
"github.com/mark3labs/mcp-go/server"
|
|
"mcp-go-db/vConfig"
|
|
"mcp-go-db/vService"
|
|
)
|
|
|
|
func Run(s *server.MCPServer, dbSvc *vService.DMDBService, config *vConfig.Config) {
|
|
// 注册war包部署工具
|
|
RegisterWarTools(s, config)
|
|
|
|
// 注册数据库工具
|
|
RegisterDBTools(s, dbSvc, config)
|
|
}
|
|
|