lightning-terminal/session/errors.go
Elle Mouton 03d03eabfc
session: create errors.go file
And move an error here which we plan to use across DB types.
2025-02-09 07:02:42 +02:00

9 lines
221 B
Go

package session
import "errors"
var (
// ErrSessionNotFound is an error returned when we attempt to retrieve
// information about a session but it is not found.
ErrSessionNotFound = errors.New("session not found")
)