mirror of
https://github.com/devsnaith/lumiere-server.git
synced 2024-11-23 17:13:14 +03:00
Create README.md
This commit is contained in:
parent
da9cb66c0c
commit
248e34791e
16
README.md
Normal file
16
README.md
Normal 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);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user