agent-notify-core 0.2.0

Core notification config and provider implementation for agent-notify.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod config;
pub mod error;
pub mod message;
pub mod output;
pub mod provider;

pub use config::{
    ChannelConfig, ChannelStatus, CheckIssue, Config, ConfigLoad, IssueLevel, ProcessEnv,
};
pub use error::{NotifyError, Result};
pub use message::{Attachment, MessageFormat, NotifyMessage, Priority};
pub use output::{
    DryRunAttachment, DryRunMessage, DryRunOutput, DryRunResultOutput, ErrorBody, ErrorOutput,
    SendOutput, SendResultOutput,
};
pub use provider::{SendResult, send_notification};