1package session 2 3import "github.com/alist-org/alist/v3/internal/db" 4 5// MarkInactive marks the session with the given ID as inactive. 6func MarkInactive(sessionID string) error { 7 return db.MarkInactive(sessionID) 8} 9 10