Skip to content

go-zoox/tag

Repository files navigation

Tag - Struct Tag Parser And Decoder

PkgGoDev Build Status Go Report Card Coverage Status GitHub issues Release

Installation

To install the package, run:

go get github.com/go-zoox/tag

Features

  • Type Validation
    • omitempty, such as tag:"app_name,omitempty"
    • required, such as tag:"app_name,required"
    • default, such as tag:"app_name,default=my_app"
    • enum, such as tag:"app_name,enum=my_app|my_app2"
    • regexp, such as tag:"app_name,regexp=/^[a-zA-Z0-9_]+$/
    • min, such as tag:"app_name,min=1
      • if type is string, means the length of string
      • if type is int64, means the minimum value of int
    • max, such as tag:"app_name,max=10
      • if type is string, means the length of string
      • if type is int64, means the maximum value of int
  • Auto Type Transform

Getting Started

// see test cases in tag_test.go

License

GoZoox is released under the MIT License.

About

Struct Tag Parser And Decoder

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages