faker
faker copied to clipboard
Support enumeration?
Hmmm,
do you have any use case scenario for this?
Use oneof tag. Example:
type TestStruct struct {
MyEnum int `faker:"oneof: 1, 2, 3, 4"`
MyOtherEnum string `faker:"oneof: YELLOW, BLUE, GREEN, RED"`
}