metanorma/metanorma

View on GitHub
lib/metanorma/input/base.rb

Summary

Maintainability
A
0 mins
Test Coverage

module Metanorma
  module Input

    class Base

      def process(file, filename, type)
        raise "This is an abstract class"
      end

    end
  end
end