go.mod
author Mikael Berthe <mikael@lilotux.net>
Sat, 10 Jul 2021 22:15:47 +0200
changeset 30 0df0950f4c21
parent 29 2b8506d91ad5
permissions -rw-r--r--
Add option --until We have --since (alias for --from-date), let's have --until for --to-date...
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
27
e882f78c302e Add go modules; fix a linting warning
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     1
module gobm65
e882f78c302e Add go modules; fix a linting warning
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     2
e882f78c302e Add go modules; fix a linting warning
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     3
go 1.16
e882f78c302e Add go modules; fix a linting warning
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     4
e882f78c302e Add go modules; fix a linting warning
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     5
require (
e882f78c302e Add go modules; fix a linting warning
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     6
	github.com/spf13/pflag v1.0.5
e882f78c302e Add go modules; fix a linting warning
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     7
	github.com/tarm/serial v0.0.0-20180830185346-98f6abe2eb07
29
2b8506d91ad5 Update module dependencies
Mikael Berthe <mikael@lilotux.net>
parents: 27
diff changeset
     8
	golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
27
e882f78c302e Add go modules; fix a linting warning
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     9
)