beet_server 0.0.6

Serve applications with axum and deploy with cargo-lambda.
Documentation
1
2
3
4
5
6
7
8
use beet_server::prelude::*;

#[rustfmt::skip]
fn main() {
	AppRouter::default()
		.run()
		.unwrap();
}