class Avo::BaseResourceTool

def initialize(**args)

def initialize(**args)
  # Set the visibility
  only_on Avo.configuration.resource_default_view
  @args = args
  post_initialize if respond_to?(:post_initialize)
end

def partial

def partial
  return self.class.partial if self.class.partial.present?
  self.class.to_s.underscore
end