-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
636 additions
and
828 deletions.
There are no files selected for viewing
17 changes: 14 additions & 3 deletions
17
local-app/python-tools/gfl-resource-actions/aws_resource_management/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,19 @@ | ||
| """ | ||
| AWS Resource Management package. | ||
| This package provides tools for managing AWS resources including stopping, | ||
| starting, and listing resources across different AWS services. | ||
| """ | ||
|
|
||
| # Re-export key modules for easier imports | ||
| from aws_resource_management.logging_setup import ( | ||
| LoggingContext, | ||
| configure_logging, | ||
| initialize_csv_log, | ||
| log_action_to_csv, | ||
| log_operation, | ||
| log_with_context, | ||
| setup_logging, | ||
| ) | ||
|
|
||
| # Set up a default logger | ||
| logger = setup_logging() | ||
|
|
||
| __version__ = "0.1.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.