opinionated-vertx/src/de/pzzz/vertx/Startup.java
Peter Schuller b950c9ebdb [wip] initial commit
extracted useful snippets from other projects
2021-12-17 07:31:44 +01:00

15 lines
256 B
Java
Executable file

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;
}
}