snix/finito-postgres/src/error.rs
Vincent Ambo 40caa5ffa2 feat(postgres): Implement Postgres-backed 'advance' function
Transactionally updates a state machine with an incoming event. Note
that this does not yet interpret actions.
2018-09-26 17:28:45 +02:00

9 lines
239 B
Rust

//! This module defines error types and conversions for issue that can
//! occur while dealing with persisted state machines.
use std::result;
pub type Result<T> = result::Result<T, Error>;
#[derive(Debug)]
pub enum Error { SomeError }