mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-22 16:00:51 +00:00
14 lines
203 B
Go
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()
|
|
}
|