mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-05-17 16:35:19 +08:00
14 lines
242 B
Go
14 lines
242 B
Go
package application
|
|
|
|
import (
|
|
"mayfly-go/internal/ai/session"
|
|
"mayfly-go/pkg/ioc"
|
|
)
|
|
|
|
func Init() {
|
|
sessionAppImpl := new(sessionAppImpl)
|
|
ioc.Register(sessionAppImpl)
|
|
// 注册session存储
|
|
session.DefaultSessionStore = sessionAppImpl
|
|
}
|