Had fight with maven. It decided to block HTTP repositories.
[meviz.git] / src / main / java / eu / svjatoslav / meviz / Module.java
1 /*
2  * Meviz - Various tools collection to work with multimedia. Author: Svjatoslav Agejenko.
3  * This project is released under Creative Commons Zero (CC0) license.
4  */
5
6
7 package eu.svjatoslav.meviz;
8
9 public interface Module {
10
11     String getDescription();
12
13     String getModuleCommand();
14
15     void run(String args[]) throws Exception;
16
17     void showCommandlineHelp();
18
19 }