Commenting-Server/src/main/java/net/mindoverflow/comments/CommentingServer.java

16 lines
286 B
Java
Raw Normal View History

2021-08-03 00:39:21 +02:00
package net.mindoverflow.comments;
import net.mindoverflow.comments.webapp.WebServer;
2021-08-03 00:39:21 +02:00
import ro.pippo.core.Pippo;
public class CommentingServer
{
public static void main(String[] args)
{
final Pippo pippo = new Pippo(new WebServer());
pippo.start();
}
}