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
2021-01-16 17:00:17 -05:00

26 lines
332 B
Go

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) {
}