summaryrefslogtreecommitdiff
path: root/internal/protocol
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2021-09-06 13:48:55 +0300
committerPaul Buetow <paul@buetow.org>2021-09-06 13:48:55 +0300
commitcc89d3fb8be2465af276d7ef03ea2a8affd87b2e (patch)
tree7e14b1784a1e74fdf9a3914c5ab54a18dac8af86 /internal/protocol
parent2c1c70313bb03cf2b2d7e7afadb07a48ff6bb690 (diff)
Print out client/server update notice even from dtail server 4 to dtail
client 3.
Diffstat (limited to 'internal/protocol')
-rw-r--r--internal/protocol/protocol.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/internal/protocol/protocol.go b/internal/protocol/protocol.go
index e92ec6a..d3035e4 100644
--- a/internal/protocol/protocol.go
+++ b/internal/protocol/protocol.go
@@ -7,8 +7,6 @@ const (
MessageDelimiter byte = '¬'
// FieldDelimiter delimits aggregation fields.
FieldDelimiter string = "|"
- // Arrow for multiple purposes
- Arrow string = "➔"
// AggregateDelimiter delimits parts of an aggregation message.
- AggregateDelimiter string = Arrow
+ AggregateDelimiter string = "➔"
)