Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 1.66 KB

README.md

File metadata and controls

39 lines (32 loc) · 1.66 KB

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.