kegani-cli 0.1.4

CLI tool for Kegani framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Shared CLI types

use clap::ValueEnum;

/// Migration action
#[derive(ValueEnum, Debug, Clone, Copy)]
pub enum MigrateAction {
    Up,
    Down,
    Status,
    Reset,
}