Reorganize variables/funcs/type declarations, fix unnecessary Sprintf, move type def to types.go

This commit is contained in:
2023-12-12 04:16:18 -06:00
parent cc2536ab99
commit 29b8477e7a
3 changed files with 16 additions and 21 deletions

7
types.go Normal file
View File

@@ -0,0 +1,7 @@
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
}