mirror of
https://github.com/therootcompany/golib.git
synced 2026-04-24 20:58:00 +00:00
- Each package gets its own go.mod: net/{dataset,httpcache,gitshallow,ipcohort,geoip,formmailer}
- go.work with replace directives for cross-module workspace resolution
- dataset.Syncer/NopSyncer moved here from httpcache; callers duck-type it
- dataset.View[T] returned by Add to prevent Init/Sync/Run misuse on group members
- cmd/check-ip moved from net/ipcohort/cmd/check-ip to top-level cmd/check-ip
- Add net/ipcohort/cmd/ipcohort-contains for standalone cohort membership testing
11 lines
249 B
Modula-2
11 lines
249 B
Modula-2
module github.com/therootcompany/golib/net/formmailer
|
|
|
|
go 1.26.0
|
|
|
|
require (
|
|
github.com/phuslu/iploc v1.0.20260415
|
|
github.com/therootcompany/golib/net/dataset v0.0.0
|
|
github.com/therootcompany/golib/net/ipcohort v0.0.0
|
|
golang.org/x/time v0.15.0
|
|
)
|