Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 1.27 KB

README.md

File metadata and controls

38 lines (30 loc) · 1.27 KB

Validations

CI

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.