mirror of
https://github.com/player-guest/butterfly.git
synced 2026-04-29 19:07:27 -05:00
12 lines
272 B
Java
12 lines
272 B
Java
package com.buttongames.butterfly;
|
|
|
|
import com.buttongames.butterfly.http.ButterflyHttpServer;
|
|
|
|
public class Main {
|
|
|
|
public static void main(String[] args) {
|
|
ButterflyHttpServer httpServer = new ButterflyHttpServer();
|
|
httpServer.startServer();
|
|
}
|
|
}
|