tc_fs/
lib.rs

1pub use block::CacheBlock;
2pub use txn::{Actor, Gateway, Resolver, SignedToken, Token, Txn, TxnServer};
3
4pub use txn::hypothetical;
5
6mod block;
7mod txn;
8
9/// A transactional directory
10pub type Dir = tc_transact::fs::Dir<CacheBlock>;
11
12/// An entry in a transactional directory
13pub type DirEntry<B> = tc_transact::fs::DirEntry<CacheBlock, B>;
14
15/// A transactional file
16pub type File<B> = tc_transact::fs::File<CacheBlock, B>;