Skip to content

Commit

Permalink
fix: app closing after start
Browse files Browse the repository at this point in the history
  • Loading branch information
kaspian-xz committed Apr 5, 2023
1 parent c9e7919 commit c8e8333
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/info/kaspian/kevin/KevinApp.java
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
package info.kaspian.kevin;

import io.quarkus.runtime.Quarkus;
import io.quarkus.runtime.QuarkusApplication;
import io.quarkus.runtime.annotations.QuarkusMain;

@QuarkusMain
public class KevinApp implements QuarkusApplication {
@Override
public int run(String... args) {
Quarkus.waitForExit();
return 0;
}
}

0 comments on commit c8e8333

Please sign in to comment.