Skip to content

Commit

Permalink
Fixup deprecated warning
Browse files Browse the repository at this point in the history
  • Loading branch information
iph committed Mar 14, 2022
1 parent 480a7a6 commit 4c84df3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
use clap::{App, Arg};
use clap::{Arg, Command};
use noctilucent::ir::CloudformationProgramIr;
use noctilucent::synthesizer::typescript_synthesizer::TypescriptSynthesizer;
use noctilucent::CloudformationParseTree;
use serde_json::Value;
use std::fs;

fn main() {
let matches = App::new("Translates cfn templates to cdk typescript")
let matches = Command::new("Translates cfn templates to cdk typescript")
.version("1.0")
.author("Sean Tyler Myers <seanmyers0608@gmail.com>")
.about("Reads cfn templates and translates them to typescript")
Expand Down

0 comments on commit 4c84df3

Please sign in to comment.