]> git.proxmox.com Git - proxmox-perl-rs.git/blobdiff - pve-rs/src/lib.rs
notify: sendmail: support the `mailto-user` parameter
[proxmox-perl-rs.git] / pve-rs / src / lib.rs
index 0d63c2826f65ee00b7ef5691544962fd774bd4ed..49483d7070c829b71f36ba7f264413ed5877b0c8 100644 (file)
@@ -11,10 +11,11 @@ pub mod tfa;
 
 #[perlmod::package(name = "Proxmox::Lib::PVE", lib = "pve_rs")]
 mod export {
-    use crate::common;
+    use crate::{common, notify};
 
     #[export]
     pub fn init() {
         common::logger::init("PVE_LOG", "info");
+        notify::init();
     }
 }