recipes/api/src/main.rs

13 lines
127 B
Rust
Raw Normal View History

2022-05-09 17:52:22 +03:00
#![deny(clippy::all)]
2022-05-09 17:06:05 +03:00
2022-05-09 17:52:22 +03:00
#[macro_use]
extern crate serde;
2022-05-09 17:06:05 +03:00
2022-05-09 17:52:22 +03:00
mod domain;
mod repo;
mod server;
2022-05-09 17:06:05 +03:00
2022-05-09 17:52:22 +03:00
fn main() {
server::start();
2022-05-09 17:06:05 +03:00
}