diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-10 21:39:25 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-10 21:39:25 -0800 |
commit | 9a83067d04c9648416b92fc8d7b8a542b0b9aa96 (patch) | |
tree | 4622455b0f694262db5aa77314a3941ab37419fc /rust/src/editing.rs | |
parent | b75aa46db21c6f7a22b6fbbbd00b1e5d93e1d1ae (diff) | |
download | fatcat-9a83067d04c9648416b92fc8d7b8a542b0b9aa96.tar.gz fatcat-9a83067d04c9648416b92fc8d7b8a542b0b9aa96.zip |
code docs/comments and rustfmt
Diffstat (limited to 'rust/src/editing.rs')
-rw-r--r-- | rust/src/editing.rs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/rust/src/editing.rs b/rust/src/editing.rs index 9dac30ac..4fca30d6 100644 --- a/rust/src/editing.rs +++ b/rust/src/editing.rs @@ -1,8 +1,13 @@ +//! Helpers and types for dealing with the edit lifecycle. +//! +//! Does not contain the core code for creating/updating/reading/deleting the Editor, Annotation, +//! and Changelog objects, which lives under `editing_crud`. + use crate::database_models::*; use crate::database_schema::*; use crate::entity_crud::EntityCrud; -use crate::errors::{Result, FatcatError}; -use crate::identifiers::{FatcatId, check_username}; +use crate::errors::{FatcatError, Result}; +use crate::identifiers::{check_username, FatcatId}; use crate::server::DbConn; use diesel; use diesel::prelude::*; |