Change public-report to rmo

We're leaning into the branding and shorter directory names
This commit is contained in:
Eli Ribble 2026-01-29 23:55:41 +00:00
parent bb692cced9
commit e7681c7d6e
No known key found for this signature in database
44 changed files with 20 additions and 20 deletions

View file

@ -17,7 +17,7 @@ import (
"github.com/Gleipnir-Technology/nidus-sync/db"
"github.com/Gleipnir-Technology/nidus-sync/llm"
"github.com/Gleipnir-Technology/nidus-sync/platform/text"
"github.com/Gleipnir-Technology/nidus-sync/public-report"
"github.com/Gleipnir-Technology/nidus-sync/rmo"
nidussync "github.com/Gleipnir-Technology/nidus-sync/sync"
"github.com/getsentry/sentry-go"
sentryhttp "github.com/getsentry/sentry-go/http"
@ -105,9 +105,9 @@ func main() {
// Set up routing by hostname
sr := nidussync.Router()
hr.Map("", sr) // default
hr.Map("*", sr) // default
hr.Map(config.DomainRMO, publicreport.Router()) // report.mosquitoes.online
hr.Map("", sr) // default
hr.Map("*", sr) // default
hr.Map(config.DomainRMO, rmo.Router()) // report.mosquitoes.online
hr.Map(config.DomainNidus, sr)
r.Mount("/", hr)