session provider에도 touch 추가

This commit is contained in:
2023-09-04 11:56:56 +09:00
parent d396a35713
commit 0eefb438a6
3 changed files with 33 additions and 0 deletions

View File

@ -31,6 +31,7 @@ type Provider interface {
New(*Authorization) (string, error)
Delete(primitive.ObjectID) error
Query(string) (*Authorization, error)
Touch(string) (bool, error)
}
type Consumer interface {