package com.mobify.astro;

/*
 * Provides access to retrieve already-instantiated plugins. Currently the PluginManager
 * is the only implementation of this interface. This interface narrows the PluginManager's
 * API exposed to plugins and makes unit testing PluginManager interactions much simpler.
 */
public interface PluginResolver {
    AstroPlugin instanceForAddress(String address);
    void removePluginFromList(AstroPlugin plugin);
}
