Skip to content

Commit e69377d

Browse files
committed
Updated new version
1 parent 7441960 commit e69377d

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "awdx"
3-
version = "0.0.5"
3+
version = "0.0.8"
44
description = "AWS DevOps X: Human-friendly, interactive AWS DevSecOps CLI tool."
55
authors = [
66
{ name = "Partha Sarathi Kundu", email = "pxkundu2@shockers.wichita.edu" }

src/awdx/cli.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,19 @@
22
from awdx.profilyze.profile_commands import profile_app
33
from awdx.costlyzer.cost_commands import cost_app
44
from awdx.iamply.iam_commands import iam_app
5+
from awdx.s3ntry.s3_commands import s3_app
6+
from awdx.secrex.secret_commands import secret_app
7+
from awdx.secutide.security_commands import security_app
58

69
app = typer.Typer(help="awdx: AWS DevOps X - Human-friendly AWS DevSecOps CLI tool.")
710

811
# Add subcommands
912
app.add_typer(profile_app, name="profile")
1013
app.add_typer(cost_app, name="cost")
1114
app.add_typer(iam_app, name="iam")
15+
app.add_typer(s3_app, name="s3")
16+
app.add_typer(secret_app, name="secret")
17+
app.add_typer(security_app, name="security")
1218

1319
ASCII_ART = r"""
1420
█████╗ ██╗ ██╗█████╗ ██╗ ██╗

0 commit comments

Comments
 (0)