mirror of
https://github.com/Xevion/r2park.git
synced 2025-12-06 19:16:01 -06:00
9 lines
261 B
Go
9 lines
261 B
Go
package main
|
|
|
|
type Location struct {
|
|
id uint // Used for registration internally
|
|
key string // Used for registration form lookup
|
|
name string // Used for autocomplete & location selection
|
|
address string // Not used in this application so far
|
|
}
|