This commit is contained in:
ask
2023-05-07 00:01:00 -07:00
parent dfaaf397fa
commit 18185090d1
23 changed files with 3305 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
package chdb
type ClickHouse struct {
}
func New(dbConfigPath string) (*ClickHouse, error) {
return &ClickHouse{}, nil
}