rototo 0.1.0-alpha.6

Control plane for runtime configuration of your application.
Documentation
1
2
3
4
5
6
7
8
9
use crate::error::RototoError;

pub(super) fn new_id() -> String {
    uuid::Uuid::new_v4().to_string()
}

pub(super) fn db_err(err: rusqlite::Error) -> RototoError {
    RototoError::new(format!("console database error: {err}"))
}