systemprompt-cloud 0.21.1

Cloud API client, credentials, OAuth, and tenant management for systemprompt.io AI governance deployments. Remote sync and multi-tenant orchestration for the MCP governance pipeline.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Cloud checkout flow: drive a subscription purchase and wait for the tenant
//! to finish provisioning.
//!
//! Re-exports the callback-flow entry point [`run_checkout_callback_flow`] and
//! the [`wait_for_provisioning`] poller.
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.

mod client;
mod provisioning;

pub use client::{CheckoutCallbackResult, CheckoutTemplates, run_checkout_callback_flow};
pub use provisioning::wait_for_provisioning;