This file contains hidden or 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
| { | |
| "AWSTemplateFormatVersion": "2010-09-09", | |
| "Parameters": { | |
| "Secrets": { | |
| "Type": "String", | |
| "Description": "Secret Keys (ARNs)", | |
| "Default": "" | |
| }, | |
| "XRayTracing": { | |
| "Type": "String", |
This file contains hidden or 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
| AWSTemplateFormatVersion: '2010-09-09' | |
| Resources: | |
| ModuleWebSocketStage: | |
| Type: AWS::ApiGatewayV2::Stage | |
| Properties: | |
| ApiId: !Ref ModuleWebSocket | |
| StageName: LATEST | |
| DeploymentId: !Ref ModuleWebSocketDeployment7DE845992A5611C1BEBFBCD7A01DB8B8 |
This file contains hidden or 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
| namespace System; | |
| using System.Diagnostics.CodeAnalysis; | |
| using System.Runtime.CompilerServices; | |
| public class ArgumentAssertException : ArgumentException { | |
| //--- Class Methods --- | |
| public static void Assert( | |
| [DoesNotReturnIf(false)] bool expression, |
This file contains hidden or 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
| #!/bin/bash | |
| # Default to the current directory if no directory is provided | |
| REPO_DIR="${1:-.}" | |
| # Check if the directory exists | |
| if [ ! -d "$REPO_DIR" ]; then | |
| echo "Directory does not exist: $REPO_DIR" | |
| exit 1 | |
| fi |
OlderNewer