vibe-ready 0.1.1

This is the project framework for vibe coding, with multiple optional modules, aiming to quickly build vibe coding projects
Documentation
1
2
3
4
5
6
7
use crate::log_s;

/// Logs the elapsed time since a caller-provided start timestamp in milliseconds.
pub(crate) fn exec_time_end(method_name: &str, start_time_ms: i64) {
    let elapsed_ms = crate::platform::now() - start_time_ms;
    log_s!(method_name, "elapsed_ms", elapsed_ms);
}