diff options
author | Vincent Ambo <mail@tazj.in> | 2018-09-26T15·28+0200 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2018-09-26T15·28+0200 |
commit | 40caa5ffa23cdd482b7c97e74891fb41269e8076 (patch) | |
tree | cbf60593008b7a696edc4184949d61ed932336fe /finito-postgres/src/error.rs | |
parent | b1e00ff0264fec4f3a5b87470980aebd94db81cf (diff) |
feat(postgres): Implement Postgres-backed 'advance' function
Transactionally updates a state machine with an incoming event. Note that this does not yet interpret actions.
Diffstat (limited to 'finito-postgres/src/error.rs')
-rw-r--r-- | finito-postgres/src/error.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/finito-postgres/src/error.rs b/finito-postgres/src/error.rs index ccbf0c107e1b..0fb30a99dcd7 100644 --- a/finito-postgres/src/error.rs +++ b/finito-postgres/src/error.rs @@ -5,4 +5,5 @@ use std::result; pub type Result<T> = result::Result<T, Error>; +#[derive(Debug)] pub enum Error { SomeError } |