Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
11 lines
201 B
Go
11 lines
201 B
Go
package schematesting
|
|
|
|
import (
|
|
"pgregory.net/rapid"
|
|
|
|
"cosmossdk.io/schema"
|
|
)
|
|
|
|
// NameGen validates valid names that match the NameFormat regex.
|
|
var NameGen = rapid.StringMatching(schema.NameFormat)
|