mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-24 14:50:40 +01:00
15 lines
363 B
Go
15 lines
363 B
Go
|
package watchtower
|
||
|
|
||
|
import (
|
||
|
"github.com/lightningnetwork/lnd/watchtower/lookout"
|
||
|
"github.com/lightningnetwork/lnd/watchtower/wtserver"
|
||
|
)
|
||
|
|
||
|
// DB abstracts the persistent functionality required to run the watchtower
|
||
|
// daemon. It composes the database interfaces required by the lookout and
|
||
|
// wtserver subsystems.
|
||
|
type DB interface {
|
||
|
lookout.DB
|
||
|
wtserver.DB
|
||
|
}
|