8 lines
184 B
Go
8 lines
184 B
Go
package models
|
|
|
|
// Query model
|
|
type Query struct {
|
|
Depth uint `json:"depth,omitempty"` // depth of query
|
|
RegExp string `json:"regExp,omitempty"` // additional regex paramaters
|
|
}
|