alembic-cli 0.3.0

Command line interface for Alembic.
1
2
3
4
5
6
7
pub(super) fn warn(scope: &str, message: &str) {
    eprintln!("warning[{scope}]: {message}");
}

pub(super) fn err(scope: &str, message: &str) {
    eprintln!("error[{scope}]: {message}");
}