nnny
This commit is contained in:
parent
ce5aca3908
commit
77101ac9b4
1 changed files with 7 additions and 1 deletions
|
@ -5,6 +5,7 @@ import (
|
|||
"fmt"
|
||||
"os"
|
||||
"sync"
|
||||
"time"
|
||||
)
|
||||
|
||||
const (
|
||||
|
@ -26,7 +27,12 @@ func (pder *ProviderFiles) ckdirpath(sid string) string {
|
|||
return fmt.Sprintf("%s/%s/%s.%s", pder.sessPath, sessDir, sid, sessExt)
|
||||
}
|
||||
|
||||
func (pder *ProviderFiles) updateAtime(sid string) {}
|
||||
func (pder *ProviderFiles) updateAtime(sid string) (err error) {
|
||||
return
|
||||
}
|
||||
func (pder *ProviderFiles) getAtime(sid string) (atime *time.Time, err error) {
|
||||
return
|
||||
}
|
||||
|
||||
// SetParams for files session provider set base path in filesystem for save sessions
|
||||
func (pder *ProviderFiles) SetParams(p any) (err error) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue