package fr.opensagres.nosql.ide.mongodb.core.internal.shell; import com.mongodb.tools.shell.ShellScriptBuilder; import fr.opensagres.nosql.ide.core.model.IServer; import fr.opensagres.nosql.ide.core.shell.AbstractShellCommand; public class ShowCollectionsShellCommand extends AbstractShellCommand { public ShowCollectionsShellCommand(IServer server) { super(server, SHELL_SHOW_COLLECTIONS, ShellScriptBuilder .showCollections()); } }