1 2 3 4 5 6 7 8 9 10 11 12 13
// SPDX-License-Identifier: BUSL-1.1 //! Protocol-neutral alert DDL — CREATE / DROP / ALTER / SHOW. pub mod alter; pub mod create; pub mod drop; pub mod show; pub use alter::alter_alert; pub use create::{CreateAlertRequest, create_alert}; pub use drop::{alert_exists, drop_alert}; pub use show::{show_alert_status, show_alerts};