Skip to content

Commit

Permalink
feat: 发布v2.3.21
Browse files Browse the repository at this point in the history
  • Loading branch information
devhaozi committed Nov 26, 2024
1 parent 6902d4d commit 0f0ab6b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion internal/bootstrap/conf.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func initGlobal() {
}

app.Root = app.Conf.MustString("app.root")
app.Version = "2.3.20"
app.Version = "2.3.21"
app.Locale = app.Conf.MustString("app.locale")

// 初始化时区
Expand Down
3 changes: 2 additions & 1 deletion pkg/db/mysql.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ package db
import (
"database/sql"
"fmt"
_ "github.com/go-sql-driver/mysql"
"regexp"
"slices"

_ "github.com/go-sql-driver/mysql"

"github.com/TheTNB/panel/pkg/types"
)

Expand Down
3 changes: 2 additions & 1 deletion pkg/db/postgres.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ package db
import (
"database/sql"
"fmt"
_ "github.com/lib/pq"
"slices"

_ "github.com/lib/pq"

"github.com/TheTNB/panel/pkg/systemctl"
"github.com/TheTNB/panel/pkg/types"
)
Expand Down

0 comments on commit 0f0ab6b

Please sign in to comment.