├── .gitattributes ├── LICENSE ├── README.md ├── go.mod └── uforall.go /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix4uni/uforall/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix4uni/uforall/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix4uni/uforall/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/rix4uni/uforall 2 | 3 | go 1.23.0 4 | -------------------------------------------------------------------------------- /uforall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rix4uni/uforall/HEAD/uforall.go --------------------------------------------------------------------------------