aboutsummaryrefslogtreecommitdiffstats
path: root/rust/fatcat-api-spec/examples/server_lib/mod.rs
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-09-05 19:04:34 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-09-05 19:04:34 -0700
commitba722671b4791524384010705bef0aaa83c22c0b (patch)
tree9d546b87a36cfa521d8a64ea032948416c9e6314 /rust/fatcat-api-spec/examples/server_lib/mod.rs
parenta65dfc914517376b5ededb82e594236c5d61c721 (diff)
downloadfatcat-ba722671b4791524384010705bef0aaa83c22c0b.tar.gz
fatcat-ba722671b4791524384010705bef0aaa83c22c0b.zip
rename rust crate fatcat-api-spec -> fatcat-openapi
Diffstat (limited to 'rust/fatcat-api-spec/examples/server_lib/mod.rs')
-rw-r--r--rust/fatcat-api-spec/examples/server_lib/mod.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/rust/fatcat-api-spec/examples/server_lib/mod.rs b/rust/fatcat-api-spec/examples/server_lib/mod.rs
deleted file mode 100644
index bf404d49..00000000
--- a/rust/fatcat-api-spec/examples/server_lib/mod.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-//! Main library entry point for fatcat implementation.
-
-mod server;
-
-mod errors {
- error_chain! {}
-}
-
-pub use self::errors::*;
-
-/// Instantiate a new server.
-pub fn server() -> Result<server::Server> {
- Ok(server::Server {})
-}