Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# go-struct-validator

![](/public/images/banner.gif)

![Build Status](https://github.com/neo7337/go-struct-validator/actions/workflows/ci.yml/badge.svg)

Neo's Go Struct Validator is a simple validator built on the core of OAS Specification. The validator is heavily
Expand Down
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module github.com/neo7337/go-struct-validator

go 1.19
go 1.22.1

require go.nandlabs.io/l3 v0.0.1
toolchain go1.22.4

require go.nandlabs.io/commons v0.0.1 // indirect
require oss.nandlabs.io/golly v1.0.0
6 changes: 2 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
go.nandlabs.io/commons v0.0.1 h1:lsbYNX7pD2p4y1w6LAp8og+1FN1BNe9PJu0Zewh1guo=
go.nandlabs.io/commons v0.0.1/go.mod h1:0Kw+BDvFH+9gNscbr6nv4nvWUt3/JmAlSMxMNkHLLdk=
go.nandlabs.io/l3 v0.0.1 h1:awmFMdP4PqkaRTImsEy0SAIb3MPcqG0dzvHM9i7tX/M=
go.nandlabs.io/l3 v0.0.1/go.mod h1:N/29Imt7tv7TB9UJqHDxwrfmUDDGKuMMo8hQzTRGUQA=
oss.nandlabs.io/golly v1.0.0 h1:OmoF7TD1ucquwIXWcEb4m1oSlhrVz4P0tWBex9QbEiQ=
oss.nandlabs.io/golly v1.0.0/go.mod h1:chm4a9slqgxDzd7pHo61pCue8dRPYHuAp70pAdWE+7Q=
Binary file added public/images/banner.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package validator
import (
"reflect"

"go.nandlabs.io/l3"
"oss.nandlabs.io/golly/l3"
)

var logger = l3.Get()
Expand Down