mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-04-30 07:59:27 -05:00
14 lines
219 B
Go
14 lines
219 B
Go
package auth
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
func (s *Service) DeleteAllUserSessions(
|
|
ctx context.Context, userID uuid.UUID,
|
|
) error {
|
|
return s.dbgen.AuthServiceDeleteAllUserSessions(ctx, userID)
|
|
}
|