Skip to content
This repository was archived by the owner on Apr 9, 2026. It is now read-only.

Commit 73b98bd

Browse files
committed
fix(bulker): upgraded duckdb driver
1 parent 8dc8723 commit 73b98bd

1 file changed

Lines changed: 15 additions & 13 deletions

File tree

admin/main.go

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
package main
22

3+
import (
4+
"github.com/jitsucom/bulker/jitsubase/appbase"
5+
"os"
6+
)
7+
38
func main() {
4-
//DeleteEmptyTopics()
5-
mongoProfile()
6-
//mongoStore()
7-
//settings := &appbase.AppSettings{
8-
// ConfigPath: os.Getenv("ADMIN_CONFIG_PATH"),
9-
// Name: "admin",
10-
// EnvPrefix: "ADMIN",
11-
// ConfigName: "admin",
12-
// ConfigType: "env",
13-
//}
14-
//application := appbase.NewApp[Config](&Context{}, settings)
15-
//application.Run()
16-
}
9+
settings := &appbase.AppSettings{
10+
ConfigPath: os.Getenv("ADMIN_CONFIG_PATH"),
11+
Name: "admin",
12+
EnvPrefix: "ADMIN",
13+
ConfigName: "admin",
14+
ConfigType: "env",
15+
}
16+
application := appbase.NewApp[Config](&Context{}, settings)
17+
application.Run()
18+
}

0 commit comments

Comments
 (0)