summaryrefslogtreecommitdiffstats
path: root/internal/models/geo.go
blob: a380ddbbf55962e1d5cdf23464435e05502ab972 (plain)
1
2
3
4
5
6
7
8
9
10
package models

type GeoSearchParams struct {
	Street string
	City   string
	State  string
	Zip    string
}

type GeoSearchResponse map[string]interface{}