mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/1Panel-dev/1Panel.git
synced 2026-09-20 16:13:59 +08:00
* feat: add keepdeps.go to preserve enterprise-only dependencies in OSS builds * feat: migrate keepdeps.go to core/deps for OSS builds
10 lines
156 B
Go
10 lines
156 B
Go
//go:build !xpack
|
|
|
|
package deps
|
|
|
|
// Keep xpack deps from being pruned by go mod tidy
|
|
import (
|
|
_ "github.com/patrickmn/go-cache"
|
|
_ "github.com/pkg/sftp"
|
|
)
|