micropub 0.4.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
15
// 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 draft_push;
pub mod mcp;
pub mod media;
pub mod operations;
pub mod publish;
pub mod tui;

pub use anyhow::{Error, Result};