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 OAuth login pages (success, error) rendered in the user's
4//! browser while the CLI waits on a redirect from the cloud backend.
5//!
6//! Copyright (c) systemprompt.io — Business Source License 1.1.
7//! See <https://systemprompt.io> for licensing details.
8
9mod oauth;
10
11pub use oauth::{ERROR_HTML as AUTH_ERROR_HTML, SUCCESS_HTML as AUTH_SUCCESS_HTML};