Fix build with newer Go versions

After #2142, building with newer Go versions fails with:

go: updates to go.mod needed; to update it:
	go mod tidy

Fix it by running go mod tidy.
This commit is contained in:
database64128
2024-05-05 12:31:55 +08:00
parent 24c112a6e3
commit fe76493f90
2 changed files with 7 additions and 1 deletions

4
go.mod
View File

@@ -1,6 +1,8 @@
module github.com/v2fly/domain-list-community
go 1.19
go 1.21
toolchain go1.22.2
require (
github.com/v2fly/v2ray-core/v5 v5.16.0