pub mod accounting;
pub mod accounting_info;
pub mod archive;
pub mod contact;
pub mod sales;
pub mod soap_client;
pub mod vat;
pub use soap_client::{SoapClient, SoapEnvelope};
pub(crate) fn local_name(name: &[u8]) -> &str {
let s = std::str::from_utf8(name).unwrap_or("");
s.rfind(':').map(|i| &s[i + 1..]).unwrap_or(s)
}