diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-09-11 14:49:25 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-09-11 14:49:25 -0700 |
commit | b9b79a7b7385ba18654d51bc2ca1b5d07f191d0e (patch) | |
tree | 3308d41627f67ed5f988016671e57e9b47a992e2 /rust/src/api_server.rs | |
parent | 2aef3c1dbf75ae374862a12e6d6a680d9ce78720 (diff) | |
download | fatcat-b9b79a7b7385ba18654d51bc2ca1b5d07f191d0e.tar.gz fatcat-b9b79a7b7385ba18654d51bc2ca1b5d07f191d0e.zip |
finish fatcat-api => fatcat-api-spec refactor
Diffstat (limited to 'rust/src/api_server.rs')
-rw-r--r-- | rust/src/api_server.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/src/api_server.rs b/rust/src/api_server.rs index 978f9893..dd35b330 100644 --- a/rust/src/api_server.rs +++ b/rust/src/api_server.rs @@ -8,8 +8,8 @@ use database_schema::*; use diesel::prelude::*; use diesel::{self, insert_into}; use errors::*; -use fatcat_api::models; -use fatcat_api::models::*; +use fatcat_api_spec::models; +use fatcat_api_spec::models::*; use std::str::FromStr; use ConnectionPool; |