tag.go 271 B

123456789
  1. package pogs
  2. // Tag previously was a legacy tunnel capnp struct but was deprecated. To help reduce the amount of changes imposed
  3. // by removing this simple struct, it was copied out of the capnp and provided here instead.
  4. type Tag struct {
  5. Name string
  6. Value string
  7. }