class Grape::API

def initial_setup(base_instance_parent)

an instance that will be used to create the set up but will not be mounted
Initialize the instance variables on the remountable class, and the base_instance
def initial_setup(base_instance_parent)
  @instances = []
  @setup = []
  @base_parent = base_instance_parent
  @base_instance = mount_instance
end