Files
1Panel/core/server/init_xpackee.go
T

14 lines
203 B
Go

//go:build xpackee
package server
import (
xpack "github.com/1Panel-dev/1Panel/core/xpack"
xpackEE "github.com/1Panel-dev/1Panel/core/xpack-ee"
)
func InitOthers() {
xpack.Init()
xpackEE.Init()
}