Skip to content

Instantly share code, notes, and snippets.

@ar
Created January 30, 2023 22:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ar/2cebcd03e251fa8b8350fbcf948f6c7d to your computer and use it in GitHub Desktop.
Save ar/2cebcd03e251fa8b8350fbcf948f6c7d to your computer and use it in GitHub Desktop.
Simple Quarkus Q2 launcher
package org.jpos.qjpos;
import io.quarkus.runtime.QuarkusApplication;
import io.quarkus.runtime.annotations.QuarkusMain;
import org.jpos.q2.Q2;
@QuarkusMain
public class QStart implements QuarkusApplication {
@Override
public int run(String... args) throws Exception {
Q2.main(args);
return 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment