about summary refs log tree commit diff
path: root/src/types.rs
diff options
context:
space:
mode:
authorMelonai <einebeere@gmail.com>2021-01-11 11:38:26 +0100
committerMelonai <einebeere@gmail.com>2021-01-11 11:38:26 +0100
commitfa1189658a911db852ba974a7382509fb4ffbb7c (patch)
tree5637553e1909f863ef6cf78c86116abb218d0fa5 /src/types.rs
parent5539abe770da491087afcd7dd1ccba1bf8f60631 (diff)
downloadshorest-fa1189658a911db852ba974a7382509fb4ffbb7c.tar.zst
shorest-fa1189658a911db852ba974a7382509fb4ffbb7c.zip
Fully split client and server
Diffstat (limited to 'src/types.rs')
-rw-r--r--src/types.rs27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/types.rs b/src/types.rs
deleted file mode 100644
index 0a4926e..0000000
--- a/src/types.rs
+++ /dev/null
@@ -1,27 +0,0 @@
-use diesel::PgConnection;
-use diesel::r2d2::{ConnectionManager, Pool};
-use crate::schema::links;
-
-#[derive(Debug, Deserialize)]
-pub struct UserData {
-    pub url: String
-}
-
-#[derive(Debug, Serialize)]
-pub struct UserResponse {
-    pub hash: String
-}
-
-#[derive(Debug, Serialize)]
-pub struct ErrorResponse {
-    pub error: String
-}
-
-#[derive(Queryable, Insertable)]
-#[table_name="links"]
-pub struct Entry {
-    pub hash: String,
-    pub url: String
-}
-
-pub type PoolState = Pool<ConnectionManager<PgConnection>>;
\ No newline at end of file