No description
Find a file
2025-12-12 18:33:24 +01:00
.golangci.yml rework, fix tests 2025-12-12 17:35:36 +01:00
example_test.go use interface 2025-12-12 18:33:24 +01:00
go.mod go: update, fix: example 2025-12-03 00:11:57 +01:00
go.sum new: change walker to accept a field 2025-12-03 18:55:30 +01:00
LICENSE.txt add apache license 2023-12-03 19:58:20 +01:00
README.md add README 2023-12-05 08:56:45 +01:00
structs.go fmt 2025-12-12 18:11:57 +01:00
structs_test.go use interface 2025-12-12 18:33:24 +01:00

Structs - a simple struct helper

Go Reference

This aims to help walking structs without dealing too much with the insides of the powerful reflection package. But on the other hand it doesn't hide too much of the inside details, providing a high degree of flexibility.

For a simple usage verifying the elements of a structure, and optionally fix them: See this example.