Prettier everything, remove vendored bootstrap

These are installed now via pnpm
This commit is contained in:
Eli Ribble 2026-03-21 19:41:51 +00:00
parent 004a49c4e4
commit 5779242f22
No known key found for this signature in database
122 changed files with 297 additions and 13665 deletions

View file

@ -1,32 +1,31 @@
package db
import (
)
import ()
type GeoBounds struct {
East float64
East float64
North float64
South float64
West float64
West float64
}
type GeoQuery struct {
Bounds GeoBounds
Limit int
Limit int
}
func NewGeoBounds() GeoBounds {
return GeoBounds{
East: 180,
East: 180,
North: 180,
South: -180,
West: -180,
West: -180,
}
}
func NewGeoQuery() GeoQuery {
return GeoQuery{
Bounds: NewGeoBounds(),
Limit: 0,
Limit: 0,
}
}