Enable go module for sub packages

This commit is contained in:
Kleissner
2021-03-16 22:19:15 +01:00
parent caf3a4f11c
commit 8b329f7258
3 changed files with 15 additions and 0 deletions

3
dht/go.mod Normal file
View File

@@ -0,0 +1,3 @@
module github.com/PeernetOfficial/core/dht
go 1.16

8
reuseport/go.mod Normal file
View File

@@ -0,0 +1,8 @@
module github.com/PeernetOfficial/core/reuseport
go 1.16
require (
github.com/pkg/errors v0.9.1
golang.org/x/sys v0.0.0-20210316164454-77fc1eacc6aa
)

4
reuseport/go.sum Normal file
View File

@@ -0,0 +1,4 @@
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
golang.org/x/sys v0.0.0-20210316164454-77fc1eacc6aa h1:ZYxPR6aca/uhfRJyaOAtflSHjJYiktO7QnJC5ut7iY4=
golang.org/x/sys v0.0.0-20210316164454-77fc1eacc6aa/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=