mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-04 09:49:20 +08:00
11 lines
207 B
Go
11 lines
207 B
Go
package session
|
|
|
|
import (
|
|
"github.com/1Panel-dev/1Panel/backend/global"
|
|
"github.com/1Panel-dev/1Panel/backend/init/session/psession"
|
|
)
|
|
|
|
func Init() {
|
|
global.SESSION = psession.NewPSession(global.CACHE)
|
|
}
|