Finally Framework

This commit is contained in:
2021-01-16 17:00:17 -05:00
parent fe932de37e
commit cd97b6262f
29 changed files with 297 additions and 360 deletions

View File

@@ -0,0 +1,25 @@
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) {
}