micropub 0.1.1

Ultra-compliant Micropub CLI for creating, updating, and managing IndieWeb posts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// ABOUTME: Main library file for micropub CLI
// ABOUTME: Exports all public modules and types

pub mod auth;
pub mod client;
pub mod config;
pub mod draft;
pub mod media;
// pub mod mcp;  // Blocked: rmcp macro issues persist in v0.8 and v0.9
pub mod operations;
pub mod publish;
pub mod tui;

pub use anyhow::{Error, Result};