mirror of
https://github.com/ethauvin/rife2-bld-hello.git
synced 2025-04-25 16:57:12 -07:00
11 lines
No EOL
248 B
Java
11 lines
No EOL
248 B
Java
package hello;
|
|
|
|
import rife.engine.Server;
|
|
|
|
public class AppSiteUber extends AppSite {
|
|
public static void main(String[] args) {
|
|
new Server()
|
|
.staticUberJarResourceBase("webapp")
|
|
.start(new AppSiteUber());
|
|
}
|
|
} |