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