2 * Meviz - Various tools collection to work with multimedia. Author: Svjatoslav Agejenko.
3 * This project is released under Creative Commons Zero (CC0) license.
7 package eu.svjatoslav.meviz;
9 public interface Module {
11 String getDescription();
13 String getModuleCommand();
15 void run(String args[]) throws Exception;
17 void showCommandlineHelp();