1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-16 04:24:56 +02:00

main.go: minor style fixes.

This commit is contained in:
Henrik Hautakoski 2023-01-05 17:08:47 +01:00
parent a9c8bd3a04
commit 8ebcf70ba1

View file

@ -36,8 +36,10 @@ var (
)
// Reader states
const RS_CONNECT = 1
const RS_READ = 2
const (
RS_CONNECT = 1
RS_READ = 2
)
func readerLoop() {
state := RS_CONNECT