9 lines
124 B
Go
9 lines
124 B
Go
package chdb
|
|
|
|
type ClickHouse struct {
|
|
}
|
|
|
|
func New(dbConfigPath string) (*ClickHouse, error) {
|
|
return &ClickHouse{}, nil
|
|
}
|