diff options
author | Quentin <quentin@deuxfleurs.fr> | 2020-11-02 15:48:39 +0100 |
---|---|---|
committer | Quentin <quentin@deuxfleurs.fr> | 2020-11-02 15:48:39 +0100 |
commit | cea871d944e36222f5fdabe3e907cb8cf86d26e8 (patch) | |
tree | a2928e83176e21f19fe9dc319c6753677742cb4a /src/web/lib.rs | |
parent | 104e2ce0a25917dfaaab7e62042cc611fc05125a (diff) | |
download | garage-cea871d944e36222f5fdabe3e907cb8cf86d26e8.tar.gz garage-cea871d944e36222f5fdabe3e907cb8cf86d26e8.zip |
Skeleton to the new web API
Diffstat (limited to 'src/web/lib.rs')
-rw-r--r-- | src/web/lib.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/web/lib.rs b/src/web/lib.rs new file mode 100644 index 00000000..80957669 --- /dev/null +++ b/src/web/lib.rs @@ -0,0 +1,5 @@ +#[macro_use] +extern crate log; + +pub mod web_server; + |