tmprl-client 0.1.0

Temporal gRPC access layer for tmprl
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! All network IO for tmprl. Knows nothing about the UI.
//!
//! Every RPC goes through the thin wrappers in this crate rather than through
//! `temporalio-client` directly. That crate is pre-1.0 and its surface moves
//! between releases, so confining it here keeps a version bump to one crate.

pub mod conn;
pub mod ops;

pub use conn::{Conn, ConnectError, ProfileRef, config_file_in_use, xdg_config_file};
pub use ops::{
    OpError,
    codec::Codec,
    history::HistoryPage,
    namespace::NamespaceInfo,
    schedule::SchedulePage,
    workflow::{Continuation, WorkflowPage},
};