Implemented the SecureValidationRule type in the library target.

This commit is contained in:
2025-10-12 17:37:52 +02:00
parent daa23f1f86
commit f32d24b26b
3 changed files with 144 additions and 1 deletions
@@ -18,4 +18,10 @@ enum InputValidationError: Error {
case inputIsEmpty
/// An input is nil.
case inputIsNil
/// An input does not comply with the consumer key requirements.
case inputNotConsumerKey
/// An input does not comply with the consumer secret requirements.
case inputNotConsumerSecret
/// An input does not comply with the user token requirements.
case inputNotUserToken
}