mirror of
https://github.com/tappollo/makata.git
synced 2026-04-30 04:45:07 +08:00
17 lines
277 B
Swift
17 lines
277 B
Swift
//
|
|
// File.swift
|
|
//
|
|
//
|
|
// Created by Michael Ong on 2/3/23.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct FieldValidator<Value> {
|
|
public let validate: (Value) throws -> Void
|
|
|
|
public init(validate: @escaping (Value) throws -> Void) {
|
|
self.validate = validate
|
|
}
|
|
}
|