13 lines
419 B
C#
13 lines
419 B
C#
namespace Questionable.Validation.Validators;
|
|
|
|
internal sealed class FateSchemaValidator : DefinitionSchemaValidator
|
|
{
|
|
protected override EPathType PathType => EPathType.Fate;
|
|
|
|
protected override string MainSchemaUri => "https://github.com/WigglyMuffin/Questionable/raw/refs/heads/main/FatePaths/fatedefinition-v1.json";
|
|
|
|
public FateSchemaValidator(SchemaRegistrar schemaRegistrar)
|
|
: base(schemaRegistrar)
|
|
{
|
|
}
|
|
}
|