1.3 KiB
1.3 KiB
Validations
Type-safe and composable validations with versatile output.
Installation
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
Documentation
This library's documentation is created using DocC and can be found here.