mirror of
https://github.com/usatiuk/dhfs.git
synced 2025-10-29 04:57:48 +01:00
21 lines
533 B
Java
21 lines
533 B
Java
package com.usatiuk.dhfsfuse;
|
|
|
|
import io.quarkus.runtime.Quarkus;
|
|
import io.quarkus.runtime.QuarkusApplication;
|
|
import io.quarkus.runtime.annotations.QuarkusMain;
|
|
|
|
@QuarkusMain
|
|
public class Main {
|
|
public static void main(String... args) {
|
|
Quarkus.run(DhfsStorageServerApp.class, args);
|
|
}
|
|
|
|
public static class DhfsStorageServerApp implements QuarkusApplication {
|
|
|
|
@Override
|
|
public int run(String... args) throws Exception {
|
|
Quarkus.waitForExit();
|
|
return 0;
|
|
}
|
|
}
|
|
} |