Private
Public Access
1
0
This commit is contained in:
2023-05-07 00:01:00 -07:00
parent dfaaf397fa
commit 18185090d1
23 changed files with 3305 additions and 0 deletions

8
chdb/db.go Normal file
View File

@@ -0,0 +1,8 @@
package chdb
type ClickHouse struct {
}
func New(dbConfigPath string) (*ClickHouse, error) {
return &ClickHouse{}, nil
}