Created
March 4, 2018 01:10
-
-
Save ondrej-kvasnovsky/de4027a5ad227ae4bd2b7a988a1b368f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package counter; | |
import io.vertx.core.Launcher; | |
// for easier debugging and running the app from IDE | |
public class App { | |
public static void main(final String[] args) { | |
Launcher.executeCommand("run", CounterVerticle.class.getName()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment