mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-25 15:09:44 +01:00
This is a pure refactor commit. It moves over all the graph related CRUD code from `channeldb` to `graph/db`.
11 lines
131 B
Go
11 lines
131 B
Go
package graphdb
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/lightningnetwork/lnd/kvdb"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
kvdb.RunTests(m)
|
|
}
|