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

1100
__web/sincere/Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

11
__web/sincere/Cargo.toml Normal file
View File

@@ -0,0 +1,11 @@
[package]
name = "sincere"
version = "0.1.0"
authors = ["Hatter Jiang <jht5945@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sincere = "0.6.6"

5
__web/sincere/README.md Normal file
View File

@@ -0,0 +1,5 @@
Crate.io:
https://crates.io/crates/sincere

11
__web/sincere/src/main.rs Normal file
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();
}