Create README.md

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

16
README.md Normal file
View File

@ -0,0 +1,16 @@
# Lumiere Server 💻👀
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);
}
}
```