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