aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/colfer/Context.colf
blob: 9bd9ec76b7784d6568ec52b846698440b9f13863 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package context

type Entry struct {
  key text
  value binary
}

type StringTag struct {
  key text
  value text
}

type LongTag struct {
  key text
  value int64
}

type BooleanTag struct {
  key text
  value bool
}

type Tags struct {
  strings   []StringTag
  longs     []LongTag
  booleans  []BooleanTag
}

type Context struct {
  tags    Tags
  entries []Entry
}