[wip] initial commit
extracted useful snippets from other projects
This commit is contained in:
commit
b950c9ebdb
26 changed files with 1362 additions and 0 deletions
15
src/de/pzzz/vertx/Startup.java
Executable file
15
src/de/pzzz/vertx/Startup.java
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
package de.pzzz.vertx;
|
||||
|
||||
import io.vertx.core.json.JsonObject;
|
||||
|
||||
public class Startup {
|
||||
private final JsonObject config;
|
||||
|
||||
public Startup(JsonObject config) {
|
||||
this.config = config;
|
||||
}
|
||||
|
||||
public JsonObject getConfig() {
|
||||
return config;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue