fluffer 4.0.2

🦊 Fluffer is a fun and experimental gemini server framework.
Documentation
#![doc = include_str!("../readme.md")]

// Enable log macros
#[macro_use]
extern crate log;

mod app;
mod client;
mod err;
mod fluff;
mod gem_bytes;
mod gem_call;
#[cfg(feature = "interactive")]
mod interactive;

pub use app::App;
pub use client::Client;
pub use err::AppErr;
pub use fluff::Fluff;
pub use gem_bytes::GemBytes;
pub use gem_call::GemCall;

/// Procedural macro used when implementing [`GemBytes`].
pub use async_trait::async_trait;

/// Re-export from [`trotter`].
pub use trotter::Status;