King Kong Web Framework
- kingkong is a web framework built using rust. which can be used for building backends :)
[dependencies]
kingkong = { git = "https://github.com/kingkongofficial/kingkong" }
use kingkong::prelude::*;
routes! {
GET "/" => |_| "Hello World.";
}
fn main() {
kingkong::run!().unwrap();
}
- for more tutorials check the docs
- kingkong is an open source project you can contribute to it :)
- Thanks for those who contributed to this project :)
- kingkong is licensed under Apache-2.0