25 lines
449 B
Java
25 lines
449 B
Java
package de.rwu.easydrop;
|
|
|
|
/**
|
|
* Kickoff point for the service.
|
|
*
|
|
* @since 0.1.0
|
|
*/
|
|
public final class Main {
|
|
/**
|
|
* Prevents unwanted instantiation.
|
|
*/
|
|
private Main() {
|
|
throw new UnsupportedOperationException("Don't instantiate me! >:(");
|
|
}
|
|
|
|
/**
|
|
* Application entrypoint.
|
|
*
|
|
* @param args
|
|
*/
|
|
public static void main(final String[] args) {
|
|
System.out.println("I'm alive!");
|
|
}
|
|
}
|