1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-20 00:39:17 +08:00

16 lines
326 B
Go
Raw Normal View History

2022-10-12 18:57:22 +08:00
package constant
import (
"path"
"github.com/1Panel-dev/1Panel/backend/global"
2022-10-12 18:57:22 +08:00
)
var (
DataDir = global.CONF.System.DataDir
ResourceDir = path.Join(DataDir, "resource")
2022-10-12 18:57:22 +08:00
AppResourceDir = path.Join(ResourceDir, "apps")
AppInstallDir = path.Join(DataDir, "apps")
TmpDir = path.Join(DataDir, "tmp")
)