-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgo.mod
More file actions
27 lines (19 loc) · 667 Bytes
/
go.mod
File metadata and controls
27 lines (19 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module github.com/tom-draper/log-analyzer
go 1.24.0
require github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de
replace internal/display => ./internal/display
require internal/server v1.0.0
require (
github.com/adrg/strutil v0.3.1
internal/location v1.0.0
)
require (
github.com/ajg/form v1.7.0 // indirect
github.com/go-chi/chi/v5 v5.2.5 // indirect
github.com/go-chi/render v1.0.3 // indirect
github.com/oschwald/geoip2-golang v1.13.0 // indirect
github.com/oschwald/maxminddb-golang v1.13.1 // indirect
golang.org/x/sys v0.41.0 // indirect
)
replace internal/server => ./internal/server
replace internal/location => ./internal/location