go.mod
author Mikael Berthe <mikael@lilotux.net>
Sat, 10 Jul 2021 20:54:14 +0200
changeset 28 3f39d3cd68ce
parent 27 e882f78c302e
child 29 2b8506d91ad5
permissions -rw-r--r--
Add a --reduce flag The reduce flag regroups close measurements (that is, within 1 hour from the next one, threshold currently hardcoded) and replaces them with their average.
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
e882f78c302e Add go modules; fix a linting warning
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     8
	golang.org/x/sys v0.0.0-20210313110737-8e9fff1a3a18 // indirect
e882f78c302e Add go modules; fix a linting warning
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     9
)