aboutsummaryrefslogblamecommitdiff
path: root/kamon-core/src/main/colfer/Context.colf
blob: 9bd9ec76b7784d6568ec52b846698440b9f13863 (plain) (tree)
1
2
3
               

                   






















                        


                     
              

                 
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
}