mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-22 19:07:48 +08:00
There is a dummy test import: test/lib/random-dep.go Because godep doen't yet vendor binaries nicely.
9 lines
310 B
Go
9 lines
310 B
Go
// package randomdep is here to introduce a dependency in random for godep to
|
|
// function properly. this way we can keep go-random vendored and not
|
|
// accidentally break our tests when we change it.
|
|
package randomdep
|
|
|
|
import (
|
|
_ "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-random"
|
|
)
|