From 40caa5ffa23cdd482b7c97e74891fb41269e8076 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 26 Sep 2018 17:28:45 +0200 Subject: feat(postgres): Implement Postgres-backed 'advance' function Transactionally updates a state machine with an incoming event. Note that this does not yet interpret actions. --- finito-postgres/src/error.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'finito-postgres/src/error.rs') 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 = result::Result; +#[derive(Debug)] pub enum Error { SomeError } -- cgit 1.4.1