railwayapp 0.0.2

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

/// View the most-recent deploy's logs
#[derive(Parser)]
pub struct Args {}

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