summaryrefslogtreecommitdiff
path: root/internal/protocol
diff options
context:
space:
mode:
Diffstat (limited to 'internal/protocol')
-rw-r--r--internal/protocol/protocol.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/internal/protocol/protocol.go b/internal/protocol/protocol.go
index d3035e4..e92ec6a 100644
--- a/internal/protocol/protocol.go
+++ b/internal/protocol/protocol.go
@@ -7,6 +7,8 @@ const (
MessageDelimiter byte = '¬'
// FieldDelimiter delimits aggregation fields.
FieldDelimiter string = "|"
+ // Arrow for multiple purposes
+ Arrow string = "➔"
// AggregateDelimiter delimits parts of an aggregation message.
- AggregateDelimiter string = "➔"
+ AggregateDelimiter string = Arrow
)