aboutsummaryrefslogtreecommitdiffstats
path: root/rust/src/bin/show_creators.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/src/bin/show_creators.rs')
-rw-r--r--rust/src/bin/show_creators.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/rust/src/bin/show_creators.rs b/rust/src/bin/show_creators.rs
index 160ca3c7..968d2542 100644
--- a/rust/src/bin/show_creators.rs
+++ b/rust/src/bin/show_creators.rs
@@ -1,13 +1,13 @@
-extern crate fc;
+extern crate fatcat;
extern crate diesel;
-use self::fatcat_rs::*;
+use self::fatcat::*;
use self::models::*;
use self::diesel::prelude::*;
fn main() {
- use diesel_demo::schema::creators::dsl::*;
+ use diesel_demo::database_schema::creators::dsl::*;
let connection = establish_connection();
let results = creators.filter(published.eq(true))