Skip to content

Instantly share code, notes, and snippets.

@ar
Created June 8, 2023 19:45
Show Gist options
  • Save ar/22fd1a4dd12ce90a52c88b3eb9e2da72 to your computer and use it in GitHub Desktop.
Save ar/22fd1a4dd12ce90a52c88b3eb9e2da72 to your computer and use it in GitHub Desktop.
Quarkus Q2 starter
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