prompthive 0.2.8

Open source prompt manager for developers. Terminal-native, sub-15ms operations, works with any AI tool.
Documentation
1
2
3
4
5
6
7
8
9
use anyhow::Result;
use std::time::Instant;
use crate::Storage;

pub fn handle_web(storage: &Storage, page: Option<&str>, _port: u16, no_browser: bool, start: Instant) -> Result<()> {
    println!("✓ Web module works!");
    println!("⏱️  Web generated ({}ms)", start.elapsed().as_millis());
    Ok(())
}