chore: reorg

This commit is contained in:
2020-10-17 11:59:10 +08:00
parent 974545fc7c
commit 0e7cc78585
7 changed files with 0 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
use sincere::App;
fn main() {
let mut app = App::new();
app.get("/", |context| {
context.response.from_text("Hello world!").unwrap();
});
app.run("127.0.0.1:8000", 20).unwrap();
}