recipes/api/src/main.rs

13 lines
131 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 rest;
2022-05-09 17:06:05 +03:00
2022-05-09 17:52:22 +03:00
fn main() {
rest::server::start();
2022-05-09 17:06:05 +03:00
}