This repository has been archived on 2023-11-13. You can view files and clone it, but cannot push or open issues or pull requests.
imagini/internal/session/session.go

26 lines
332 B
Go
Raw Normal View History

2021-01-16 22:00:17 +00:00
package session
import (
"sync"
)
type SessionManager struct {
Mutex sync.Mutex
}
func NewMgr() *SessionManager {
return &SessionManager{}
}
func (sm *SessionManager) Set(key, value string) {
}
func (sm *SessionManager) Get(key string) string {
return ""
}
func (sm *SessionManager) Delete(key string) {
}