smugmug 0.7.0

SmugMug APIv2 Client Library
Documentation
/*
 * Copyright (c) 2025 Craig Hamilton and Contributors.
 * Licensed under either of
 *  - Apache License, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0> OR
 *  - MIT license <http://opensource.org/licenses/MIT>
 *  at your option.
 */

pub mod album;
pub mod client;
pub mod errors;
pub mod image;
mod macros;
pub mod node;
mod parsers;
pub mod properties;
pub mod user;

pub use album::*;
pub use client::*;
pub use errors::*;
pub use image::*;
pub use node::*;
pub use properties::*;
pub use user::*;