ytdl-sub/ytdl_subscribe/validators/native/validator.py
2022-03-31 00:20:06 +00:00

10 lines
198 B
Python

from typing import Any
class Validator:
def __init__(self, key: str, value: Any):
self.key = key
self.value = value
def validate(self) -> "Validator":
return self