mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-05 16:57:17 +08:00
13 lines
185 B
Go
13 lines
185 B
Go
package form
|
|
|
|
type SearchForm interface {
|
|
GetQuery() string
|
|
SetQuery(q string)
|
|
}
|
|
|
|
func ParseQueryString(f SearchForm) (result error) {
|
|
q := f.GetQuery()
|
|
|
|
return Unserialize(f, q)
|
|
}
|