Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 345 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 345 Bytes

json-hidden-marshal

Example

type User struct {
    Name     string `json:"name"`
    Password string `json:"password" hidden:"mask"` // -> masked like "*****", preserving the string length 
    Hidden   int    `json:"hidden" hidden:"-"`
    Hidden2  int    `json:"hidden" hidden:"true"` // hidden:"-" or hidden:"true" to skip
}