mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-21 02:04:09 +00:00
Every import of the module changes, not only the seven packages that
moved out of sdk/pkg: Go requires the major version in the path from v2
on. Both happen in one pass —
go run github.com/go-admin-team/go-admin-core/tools/coreupgrade@v2.0.0 -w -v2 .
go mod tidy
— which is the command the release notes give, run here as a consumer
would run it. 210 imports across 95 files.
The compatibility shims this used are gone in v2, so the paths that
moved had to move: sdk/pkg/captcha, sdk/pkg/jwtauth and its user
package, sdk/pkg/response and sdk/pkg/casbin.
The count of unformatted files is unchanged at 34, none of them touched
by this: the tool reformats a file only if it was already gofmt clean,
so a migration cannot disappear into whitespace.
51 lines
1.0 KiB
Go
51 lines
1.0 KiB
Go
/*
|
|
* @Author: zhangwenjian
|
|
* @Date: 2025/04/13 22:03
|
|
* @Last Modified by: zhangwenjian
|
|
* @Last Modified time: 2025/04/13 22:03
|
|
*/
|
|
|
|
package storage
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/go-admin-team/go-admin-core/v2/sdk"
|
|
"github.com/go-admin-team/go-admin-core/v2/sdk/config"
|
|
"github.com/go-admin-team/go-admin-core/v2/captcha"
|
|
)
|
|
|
|
// Setup 配置storage组件
|
|
func Setup() {
|
|
setupCache()
|
|
setupCaptcha()
|
|
setupQueue()
|
|
}
|
|
|
|
func setupCache() {
|
|
cacheAdapter, err := config.CacheConfig.Setup()
|
|
if err != nil {
|
|
log.Fatalf("cache setup error, %s\n", err.Error())
|
|
}
|
|
sdk.Runtime.SetCacheAdapter(cacheAdapter)
|
|
}
|
|
|
|
func setupCaptcha() {
|
|
captcha.SetStore(captcha.NewCacheStore(sdk.Runtime.GetCacheAdapter(), 600))
|
|
}
|
|
|
|
func setupQueue() {
|
|
if config.QueueConfig.Empty() {
|
|
return
|
|
}
|
|
if q := sdk.Runtime.GetQueueAdapter(); q != nil {
|
|
q.Shutdown()
|
|
}
|
|
queueAdapter, err := config.QueueConfig.Setup()
|
|
if err != nil {
|
|
log.Fatalf("queue setup error, %s\n", err.Error())
|
|
}
|
|
sdk.Runtime.SetQueueAdapter(queueAdapter)
|
|
go queueAdapter.Run()
|
|
}
|