mirror of
https://github.com/lightninglabs/lightning-terminal.git
synced 2026-08-19 13:18:38 +02:00
10 lines
221 B
Go
10 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")
|
||
|
|
)
|