1# frozen_string_literal: true
2
3module Importable
4  extend ActiveSupport::Concern
5
6  attr_accessor :importing
7  alias_method :importing?, :importing
8
9  attr_accessor :imported
10  alias_method :imported?, :imported
11end
12