kazzix14 / mangrove

MIT License
3 stars 0 forks source link

Validatable #19

Open kazzix14 opened 7 months ago

kazzix14 commented 7 months ago
class Form
  extend Validatable
end

class Form
  class Unvalidated
    sig { returns(Validated) }
    def validate
    end
  end

  class Validated
  end
end