dont fail on init for empty reader/path
Some checks failed
codeql / analyze (go) (push) Failing after 49s
build / lint (push) Has been cancelled
build / test (push) Has been cancelled

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2024-11-19 20:35:06 +03:00
parent 89b41364c3
commit 3cc1cf899a
3 changed files with 32 additions and 15 deletions

16
go.mod
View File

@@ -1,10 +1,18 @@
module go.unistack.org/micro-config-file/v3
go 1.18
go 1.22
toolchain go1.23.1
require (
dario.cat/mergo v1.0.0
go.unistack.org/micro/v3 v3.10.44
dario.cat/mergo v1.0.1
go.unistack.org/micro/v3 v3.10.100
golang.org/x/text v0.20.0
)
require github.com/google/uuid v1.6.0 // indirect
require (
github.com/google/uuid v1.6.0 // indirect
go.unistack.org/micro-proto/v3 v3.4.1 // indirect
google.golang.org/protobuf v1.35.2 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)