From 9fd61000efaf407c0fbbf9c626502d999877370d Mon Sep 17 00:00:00 2001 From: Natty Date: Sat, 18 Feb 2023 15:28:09 +0100 Subject: [PATCH] Basic Axum setup --- core/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 core/src/lib.rs diff --git a/core/src/lib.rs b/core/src/lib.rs new file mode 100644 index 0000000..c32ecf7 --- /dev/null +++ b/core/src/lib.rs @@ -0,0 +1,2 @@ +#[forbid(unsafe_code)] +pub mod web_model;