Type-safe and composable validations with versatile output.
Add Validations
to your Package.swift
file.
dependencies: [
...
.package(url: "https://github.com/siemensikkema/Validations.git", from: "0.2.0"),
]
...
targets: [
.target(
name: "MyTarget",
dependencies: [
...
"Validations",
]
)
]
Import Decoded
and Validations
to any file you want to use this library in.
import Decoded
import Validations
This library's documentation is created using DocC and can be found here.