mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-26 12:57:44 +08:00
10 lines
393 B
Go
10 lines
393 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/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-random"
|
|
_ "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-random-files"
|
|
)
|