Skip to main content

systemprompt_cli/commands/cloud/templates/
mod.rs

1//! Static HTML pages served by the local callback server during cloud flows.
2//!
3//! Re-exports the checkout pages (waiting, success, error) and the OAuth
4//! login pages (success, error) rendered in the user's browser while the CLI
5//! waits on a redirect from the cloud backend.
6//!
7//! Copyright (c) systemprompt.io — Business Source License 1.1.
8//! See <https://systemprompt.io> for licensing details.
9
10mod checkout;
11mod oauth;
12
13pub use checkout::{
14    ERROR_HTML as CHECKOUT_ERROR_HTML, SUCCESS_HTML as CHECKOUT_SUCCESS_HTML, WAITING_HTML,
15};
16pub use oauth::{ERROR_HTML as AUTH_ERROR_HTML, SUCCESS_HTML as AUTH_SUCCESS_HTML};