Make it simple

This commit is contained in:
강남스타일 2023-04-13 07:31:18 +03:00 committed by GitHub
parent 248e34791e
commit ad5757faae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,15 +2,6 @@
Simple and lightweight web server for creating basic pages using Java ⭐
```java
import org.eu.lumiere.Lumiere;
import org.eu.lumiere.utils.BasicResponse;
public class MyServer {
public static void main(String[] args) {
Lumiere server = new Lumiere(new BasicResponse("Hello, World", false));
server.bootServer(8080);
}
}
```