Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/actor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,7 @@ pub struct OpenOpts {
/// Optionally subscribe to replica events.
pub subscribe: Option<async_channel::Sender<Event>>,
}

impl OpenOpts {
/// Set sync state to true.
pub fn sync(mut self) -> Self {
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ mod ticket;

pub mod engine;

mod actor;
pub mod actor;
pub mod api;
pub mod store;
pub mod sync;
Expand Down
Loading