2022-10-29 08:12:05 +00:00
|
|
|
module local-ip.sh
|
2022-10-27 21:19:23 +00:00
|
|
|
|
2024-07-19 00:24:11 +00:00
|
|
|
go 1.22
|
2022-10-27 21:19:23 +00:00
|
|
|
|
2023-12-12 21:25:39 +00:00
|
|
|
require (
|
|
|
|
github.com/go-acme/lego/v4 v4.10.1
|
|
|
|
github.com/miekg/dns v1.1.57
|
2024-07-19 00:24:11 +00:00
|
|
|
github.com/rs/zerolog v1.33.0
|
|
|
|
golang.org/x/net v0.17.0
|
|
|
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1
|
2023-12-12 21:25:39 +00:00
|
|
|
)
|
2023-02-26 04:02:07 +00:00
|
|
|
|
2022-10-27 21:19:23 +00:00
|
|
|
require (
|
2023-02-26 10:02:30 +00:00
|
|
|
github.com/cenkalti/backoff/v4 v4.2.0 // indirect
|
|
|
|
github.com/go-jose/go-jose/v3 v3.0.0 // indirect
|
2024-07-19 00:24:11 +00:00
|
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
2023-12-12 21:25:39 +00:00
|
|
|
golang.org/x/crypto v0.14.0 // indirect
|
|
|
|
golang.org/x/mod v0.12.0 // indirect
|
2024-07-19 00:24:11 +00:00
|
|
|
golang.org/x/sys v0.22.0 // indirect
|
2023-12-12 21:25:39 +00:00
|
|
|
golang.org/x/text v0.13.0 // indirect
|
|
|
|
golang.org/x/tools v0.13.0 // indirect
|
2022-10-27 21:19:23 +00:00
|
|
|
)
|