mirror of
https://github.com/lightninglabs/lightning-terminal.git
synced 2026-08-16 13:01:14 +02:00
13 lines
362 B
Go
13 lines
362 B
Go
|
|
package firewalldb
|
||
|
|
|
||
|
|
import "github.com/lightninglabs/lightning-terminal/session"
|
||
|
|
|
||
|
|
// SessionDB is an interface that abstracts the database operations needed for
|
||
|
|
// the privacy mapper to function.
|
||
|
|
type SessionDB interface {
|
||
|
|
session.IDToGroupIndex
|
||
|
|
|
||
|
|
// GetSessionByID returns the session for a specific id.
|
||
|
|
GetSessionByID(session.ID) (*session.Session, error)
|
||
|
|
}
|