mirror of
https://github.com/AlistGo/alist.git
synced 2025-11-25 03:15:10 +08:00
9 lines
215 B
Go
9 lines
215 B
Go
|
|
package session
|
||
|
|
|
||
|
|
import "github.com/alist-org/alist/v3/internal/db"
|
||
|
|
|
||
|
|
// MarkInactive marks the session with the given ID as inactive.
|
||
|
|
func MarkInactive(sessionID string) error {
|
||
|
|
return db.MarkInactive(sessionID)
|
||
|
|
}
|