railwayapp 0.0.8

Interact with Railway via CLI
1
2
3
4
5
6
7
8
9
use super::*;

/// Logout of your Railway account
#[derive(Parser)]
pub struct Args {}

pub async fn command(_args: Args, _json: bool) -> Result<()> {
    unimplemented!("logout command is not implemented yet");
}