Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alist-org
GitHub Repository: alist-org/alist
Path: blob/main/internal/session/session.go
1560 views
1
package session
2
3
import "github.com/alist-org/alist/v3/internal/db"
4
5
// MarkInactive marks the session with the given ID as inactive.
6
func MarkInactive(sessionID string) error {
7
return db.MarkInactive(sessionID)
8
}
9
10