Skip to content

Commit 0f5b9e6

Browse files
committed
Add go module support
Simply run: go mod init github.com/openchirp/ccbootutil go mod tidy
1 parent 24c6208 commit 0f5b9e6

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

go.mod

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module github.com/openchirp/ccbootutil
2+
3+
go 1.18
4+
5+
require (
6+
github.com/jacobsa/go-serial v0.0.0-20180131005756-15cf729a72d4
7+
github.com/openchirp/ccboot v0.0.0-20181111211820-9c50df9baf3a
8+
github.com/sirupsen/logrus v1.8.1
9+
)
10+
11+
require golang.org/x/sys v0.0.0-20191026070338-33540a1f6037 // indirect

go.sum

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
2+
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3+
github.com/jacobsa/go-serial v0.0.0-20180131005756-15cf729a72d4 h1:G2ztCwXov8mRvP0ZfjE6nAlaCX2XbykaeHdbT6KwDz0=
4+
github.com/jacobsa/go-serial v0.0.0-20180131005756-15cf729a72d4/go.mod h1:2RvX5ZjVtsznNZPEt4xwJXNJrM3VTZoQf7V6gk0ysvs=
5+
github.com/openchirp/ccboot v0.0.0-20181111211820-9c50df9baf3a h1:vWP6JeH62IUgHenqE4twShxvuuyzQVmPiScYcGCTubM=
6+
github.com/openchirp/ccboot v0.0.0-20181111211820-9c50df9baf3a/go.mod h1:YseLZn1L8u8J2m7TZKua4cHyqQ/Y/qxIPIleNbB+qes=
7+
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
8+
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
9+
github.com/sirupsen/logrus v1.8.1 h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE=
10+
github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0=
11+
github.com/stretchr/testify v1.2.2 h1:bSDNvY7ZPG5RlJ8otE/7V6gMiyenm9RtJ7IUVIAoJ1w=
12+
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
13+
golang.org/x/sys v0.0.0-20191026070338-33540a1f6037 h1:YyJpGZS1sBuBCzLAR1VEpK193GlqGZbnPFnPV/5Rsb4=
14+
golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=

0 commit comments

Comments
 (0)