File: custom_tag.go

package info (click to toggle)
golang-github-tinylib-msgp 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,168 kB
  • sloc: makefile: 45
file content (8 lines) | stat: -rw-r--r-- 149 bytes parent folder | download
1
2
3
4
5
6
7
8
package _generated

//go:generate msgp -d "tag mytag"

type CustomTag struct {
	Foo string `mytag:"foo_custom_name"`
	Bar int    `mytag:"bar1234"`
}