Created
January 30, 2023 22:14
-
-
Save ar/2cebcd03e251fa8b8350fbcf948f6c7d to your computer and use it in GitHub Desktop.
Simple Quarkus Q2 launcher
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