24 lines
446 B
Go
24 lines
446 B
Go
//go:build !plus
|
|
|
|
package db
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
"github.com/iwind/TeaGo/actions"
|
|
)
|
|
|
|
type TestClickHouseAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *TestClickHouseAction) Init() {
|
|
this.Nav("db", "db", "clickhouse")
|
|
}
|
|
|
|
func (this *TestClickHouseAction) RunPost(params struct {
|
|
Host string
|
|
Must *actions.Must
|
|
}) {
|
|
this.Fail("请使用商业版以测试 ClickHouse 连接")
|
|
}
|