Skip to content

Commit c5f6ee4

Browse files
committed
CLI command compatibility with v2
1 parent 03f7fcb commit c5f6ee4

File tree

35 files changed

+33
-185
lines changed

35 files changed

+33
-185
lines changed

sample-apps/blank-csharp-with-layer/1-create-bucket-and-role.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ echo $BUCKET_NAME > bucket-name.txt
66
aws s3 mb s3://$BUCKET_NAME
77
aws s3 mb s3://$LAYER_BUCKET_NAME
88

9-
aws iam create-role --role-name blank-csharp-role --assume-role-policy-document file://assume-policy.json
9+
aws iam create-role --role-name blank-csharp-role --assume-role-policy-document fileb://assume-policy.json
1010
aws iam attach-role-policy --role-name blank-csharp-role --policy-arn arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole
1111
aws iam attach-role-policy --role-name blank-csharp-role --policy-arn arn:aws:iam::aws:policy/AWSLambda_ReadOnlyAccess
1212
aws iam attach-role-policy --role-name blank-csharp-role --policy-arn arn:aws:iam::aws:policy/AWSXrayWriteOnlyAccess

sample-apps/blank-csharp-with-layer/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,6 @@ Use the following instructions to deploy the sample application. For more inform
1515
- The Bash shell. For Linux and macOS, this is included by default. In Windows 10, you can install the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10) to get a Windows-integrated version of Ubuntu and Bash.
1616
- [The AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html) v1.17 or newer.
1717

18-
If you use the AWS CLI v2, add the following to your [configuration file](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) (`~/.aws/config`):
19-
20-
```
21-
cli_binary_format=raw-in-base64-out
22-
```
23-
24-
This setting enables the AWS CLI v2 to load JSON events from a file, matching the v1 behavior.
25-
2618
# Setup
2719
Download or clone this repository.
2820

sample-apps/blank-csharp/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,6 @@ Use the following instructions to deploy the sample application. For more inform
1616
- The Bash shell. For Linux and macOS, this is included by default. In Windows 10, you can install the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10) to get a Windows-integrated version of Ubuntu and Bash.
1717
- [The AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html) v1.17 or newer.
1818

19-
If you use the AWS CLI v2, add the following to your [configuration file](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) (`~/.aws/config`):
20-
21-
```
22-
cli_binary_format=raw-in-base64-out
23-
```
24-
25-
This setting enables the AWS CLI v2 to load JSON events from a file, matching the v1 behavior.
26-
2719
# Setup
2820
Download or clone this repository.
2921

sample-apps/blank-go/3-invoke.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -eo pipefail
33
FUNCTION=$(aws cloudformation describe-stack-resource --stack-name blank-go --logical-resource-id function --query 'StackResourceDetail.PhysicalResourceId' --output text)
44
55
while true; do
6-
aws lambda invoke --function-name $FUNCTION --payload file://event.json out.json
6+
aws lambda invoke --function-name $FUNCTION --payload fileb://event.json out.json
77
cat out.json
88
echo ""
99
sleep 2

sample-apps/blank-go/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,6 @@ Use the following instructions to deploy the sample application.
1515
- The Bash shell. For Linux and macOS, this is included by default. In Windows 10, you can install the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10) to get a Windows-integrated version of Ubuntu and Bash.
1616
- [The AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html) v1.17 or newer.
1717

18-
If you use the AWS CLI v2, add the following to your [configuration file](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) (`~/.aws/config`):
19-
20-
```
21-
cli_binary_format=raw-in-base64-out
22-
```
23-
24-
This setting enables the AWS CLI v2 to load JSON events from a file, matching the v1 behavior.
25-
2618
# Setup
2719
Download or clone this repository.
2820

sample-apps/blank-java/4-invoke.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -eo pipefail
33
FUNCTION=$(aws cloudformation describe-stack-resource --stack-name blank-java --logical-resource-id function --query 'StackResourceDetail.PhysicalResourceId' --output text)
44
55
while true; do
6-
aws lambda invoke --function-name $FUNCTION --payload file://event.json out.json
6+
aws lambda invoke --function-name $FUNCTION --payload fileb://event.json out.json
77
cat out.json
88
echo ""
99
sleep 2

sample-apps/blank-java/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,6 @@ Use the following instructions to deploy the sample application.
2020
- The Bash shell. For Linux and macOS, this is included by default. In Windows 10, you can install the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10) to get a Windows-integrated version of Ubuntu and Bash.
2121
- [The AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html) v1.17 or newer.
2222

23-
If you use the AWS CLI v2, add the following to your [configuration file](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) (`~/.aws/config`):
24-
25-
```
26-
cli_binary_format=raw-in-base64-out
27-
```
28-
29-
This setting enables the AWS CLI v2 to load JSON events from a file, matching the v1 behavior.
30-
3123
# Setup
3224
Download or clone this repository.
3325

sample-apps/blank-nodejs/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,6 @@ Use the following instructions to deploy the sample application. For an in-depth
2525
- The Bash shell. For Linux and macOS, this is included by default. In Windows 10, you can install the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10) to get a Windows-integrated version of Ubuntu and Bash.
2626
- [The AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html) v1.17 or newer.
2727

28-
If you use the AWS CLI v2, add the following to your [configuration file](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) (`~/.aws/config`):
29-
30-
```
31-
cli_binary_format=raw-in-base64-out
32-
```
33-
34-
This setting enables the AWS CLI v2 to load JSON events from a file, matching the v1 behavior.
35-
3628
# Setup
3729
Download or clone this repository.
3830

sample-apps/blank-powershell/3-invoke.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -eo pipefail
33
FUNCTION=$(aws cloudformation describe-stack-resource --stack-name blank-powershell --logical-resource-id function --query 'StackResourceDetail.PhysicalResourceId' --output text)
44
55
while true; do
6-
aws lambda invoke --function-name $FUNCTION --payload file://event.json out.json
6+
aws lambda invoke --function-name $FUNCTION --payload fileb://event.json out.json
77
cat out.json
88
echo ""
99
sleep 2

sample-apps/blank-powershell/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,6 @@ Use the following instructions to deploy the sample application.
1717
- The Bash shell. For Linux and macOS, this is included by default. In Windows 10, you can install the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10) to get a Windows-integrated version of Ubuntu and Bash.
1818
- [The AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html) v1.17 or newer.
1919

20-
If you use the AWS CLI v2, add the following to your [configuration file](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) (`~/.aws/config`):
21-
22-
```
23-
cli_binary_format=raw-in-base64-out
24-
```
25-
26-
This setting enables the AWS CLI v2 to load JSON events from a file, matching the v1 behavior.
27-
2820
# Setup
2921
Download or clone this repository.
3022

sample-apps/blank-python/4-invoke.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -eo pipefail
33
FUNCTION=$(aws cloudformation describe-stack-resource --stack-name blank-python --logical-resource-id function --query 'StackResourceDetail.PhysicalResourceId' --output text)
44
55
while true; do
6-
aws lambda invoke --function-name $FUNCTION --payload file://event.json out.json
6+
aws lambda invoke --function-name $FUNCTION --payload fileb://event.json out.json
77
cat out.json
88
echo ""
99
sleep 2

sample-apps/blank-python/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,6 @@ Use the following instructions to deploy the sample application.
1515
- The Bash shell. For Linux and macOS, this is included by default. In Windows 10, you can install the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10) to get a Windows-integrated version of Ubuntu and Bash.
1616
- [The AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html) v1.17 or newer.
1717

18-
If you use the AWS CLI v2, add the following to your [configuration file](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) (`~/.aws/config`):
19-
20-
```
21-
cli_binary_format=raw-in-base64-out
22-
```
23-
24-
This setting enables the AWS CLI v2 to load JSON events from a file, matching the v1 behavior.
25-
2618
# Setup
2719
Download or clone this repository.
2820

sample-apps/blank-ruby/4-invoke.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -eo pipefail
33
FUNCTION=$(aws cloudformation describe-stack-resource --stack-name blank-ruby --logical-resource-id function --query 'StackResourceDetail.PhysicalResourceId' --output text)
44
55
while true; do
6-
aws lambda invoke --function-name $FUNCTION --payload file://event.json out.json
6+
aws lambda invoke --function-name $FUNCTION --payload fileb://event.json out.json
77
cat out.json
88
echo ""
99
sleep 2

sample-apps/blank-ruby/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,6 @@ Use the following instructions to deploy the sample application.
1515
- The Bash shell. For Linux and macOS, this is included by default. In Windows 10, you can install the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10) to get a Windows-integrated version of Ubuntu and Bash.
1616
- [The AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html) v1.17 or newer.
1717

18-
If you use the AWS CLI v2, add the following to your [configuration file](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) (`~/.aws/config`):
19-
20-
```
21-
cli_binary_format=raw-in-base64-out
22-
```
23-
24-
This setting enables the AWS CLI v2 to load JSON events from a file, matching the v1 behavior.
25-
2618
# Setup
2719
Download or clone this repository.
2820

sample-apps/ec2-spot/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,6 @@ Use the following instructions to deploy the sample application. For more inform
1515
- The Bash shell. For Linux and macOS, this is included by default. In Windows 10, you can install the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10) to get a Windows-integrated version of Ubuntu and Bash.
1616
- [The AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html) v1.17 or newer.
1717

18-
If you use the AWS CLI v2, add the following to your [configuration file](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) (`~/.aws/config`):
19-
20-
```
21-
cli_binary_format=raw-in-base64-out
22-
```
23-
24-
This setting enables the AWS CLI v2 to load JSON events from a file, matching the v1 behavior.
25-
2618
# Setup
2719
Download or clone this repository.
2820

sample-apps/efs-nodejs/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,6 @@ To deploy the sample application, you need the following tools:
3232
- The Bash shell. For Linux and macOS, this is included by default. In Windows 10, you can install the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10) to get a Windows-integrated version of Ubuntu and Bash.
3333
- [The AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html) v1.17 or newer.
3434

35-
If you use the AWS CLI v2, add the following to your [configuration file](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) (`~/.aws/config`):
36-
37-
```
38-
cli_binary_format=raw-in-base64-out
39-
```
40-
41-
This setting enables the AWS CLI v2 to load JSON events from a file, matching the v1 behavior.
42-
4335
To run the sample application in AWS, you need permission to use Lambda and the following services.
4436

4537
- Amazon EFS ([pricing](https://aws.amazon.com/efs/pricing/))

sample-apps/error-processor/4-invoke.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ while true; do
66
then
77
case $1 in
88
async)
9-
aws lambda invoke --function-name $ERROR_FUNCTION --payload file://event.json --invocation-type Event out.json
9+
aws lambda invoke --function-name $ERROR_FUNCTION --payload fileb://event.json --invocation-type Event out.json
1010
;;
1111
*)
1212
echo -n "Unknown argument"
1313
;;
1414
esac
1515
else
16-
aws lambda invoke --function-name $ERROR_FUNCTION --payload file://event.json out.json
16+
aws lambda invoke --function-name $ERROR_FUNCTION --payload fileb://event.json out.json
1717
fi
1818
cat out.json
1919
echo ""

sample-apps/error-processor/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,6 @@ Use the following instructions to deploy the sample application. For more inform
1818
- The Bash shell. For Linux and macOS, this is included by default. In Windows 10, you can install the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10) to get a Windows-integrated version of Ubuntu and Bash.
1919
- [The AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html) v1.17 or newer.
2020

21-
If you use the AWS CLI v2, add the following to your [configuration file](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) (`~/.aws/config`):
22-
23-
```
24-
cli_binary_format=raw-in-base64-out
25-
```
26-
27-
This setting enables the AWS CLI v2 to load JSON events from a file, matching the v1 behavior.
28-
2921
# Setup
3022
Download or clone this repository.
3123

sample-apps/java-basic/3-invoke.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ while true; do
3030
then
3131
aws lambda invoke --function-name $FUNCTION --payload $PAYLOAD out.json
3232
else
33-
aws lambda invoke --function-name $FUNCTION --payload file://event.json out.json
33+
aws lambda invoke --function-name $FUNCTION --payload fileb://event.json out.json
3434
fi
3535
cat out.json
3636
echo ""

sample-apps/java-basic/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,6 @@ Use the following instructions to deploy the sample application.
1818
- The Bash shell. For Linux and macOS, this is included by default. In Windows 10, you can install the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10) to get a Windows-integrated version of Ubuntu and Bash.
1919
- [The AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html) v1.17 or newer.
2020

21-
If you use the AWS CLI v2, add the following to your [configuration file](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) (`~/.aws/config`):
22-
23-
```
24-
cli_binary_format=raw-in-base64-out
25-
```
26-
27-
This setting enables the AWS CLI v2 to load JSON events from a file, matching the v1 behavior.
28-
2921
# Setup
3022
Download or clone this repository.
3123

sample-apps/java-events-v1sdk/4-invoke.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ if [ $1 ]
55
then
66
case $1 in
77
ddb)
8-
PAYLOAD='file://events/dynamodb-record.json'
8+
PAYLOAD='fileb://events/dynamodb-record.json'
99
;;
1010
kin)
11-
PAYLOAD='file://events/kinesis-record.json'
11+
PAYLOAD='fileb://events/kinesis-record.json'
1212
;;
1313
*)
1414
echo -n "Unknown event type"
@@ -20,7 +20,7 @@ while true; do
2020
then
2121
aws lambda invoke --function-name $FUNCTION --payload $PAYLOAD out.json
2222
else
23-
aws lambda invoke --function-name $FUNCTION --payload file://event.json out.json
23+
aws lambda invoke --function-name $FUNCTION --payload fileb://event.json out.json
2424
fi
2525
cat out.json
2626
echo ""

sample-apps/java-events-v1sdk/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,6 @@ Use the following instructions to deploy the sample application.
2222
- The Bash shell. For Linux and macOS, this is included by default. In Windows 10, you can install the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10) to get a Windows-integrated version of Ubuntu and Bash.
2323
- [The AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html) v1.17 or newer.
2424

25-
If you use the AWS CLI v2, add the following to your [configuration file](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) (`~/.aws/config`):
26-
27-
```
28-
cli_binary_format=raw-in-base64-out
29-
```
30-
31-
This setting enables the AWS CLI v2 to load JSON events from a file, matching the v1 behavior.
32-
3325
# Setup
3426
Download or clone this repository.
3527

sample-apps/java-events/3-invoke.sh

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,46 +5,46 @@ if [ $1 ]
55
then
66
case $1 in
77
apig)
8-
PAYLOAD='file://events/apigateway-v1.json'
8+
PAYLOAD='fileb://events/apigateway-v1.json'
99
;;
1010
cws)
11-
PAYLOAD='file://events/cloudwatch-scheduled.json'
11+
PAYLOAD='fileb://events/cloudwatch-scheduled.json'
1212
;;
1313
cwl)
14-
PAYLOAD='file://events/cloudwatch-logs.json'
14+
PAYLOAD='fileb://events/cloudwatch-logs.json'
1515
;;
1616
sns)
17-
PAYLOAD='file://events/sns-notification.json'
17+
PAYLOAD='fileb://events/sns-notification.json'
1818
;;
1919
cdn)
20-
PAYLOAD='file://events/cloudfront.json'
20+
PAYLOAD='fileb://events/cloudfront.json'
2121
;;
2222
cfg)
23-
PAYLOAD='file://events/config-rule.json'
23+
PAYLOAD='fileb://events/config-rule.json'
2424
;;
2525
cc)
26-
PAYLOAD='file://events/codecommit-push.json'
26+
PAYLOAD='fileb://events/codecommit-push.json'
2727
;;
2828
cog)
29-
PAYLOAD='file://events/cognito-sync.json'
29+
PAYLOAD='fileb://events/cognito-sync.json'
3030
;;
3131
kin)
32-
PAYLOAD='file://events/kinesis-record.json'
32+
PAYLOAD='fileb://events/kinesis-record.json'
3333
;;
3434
fh)
35-
PAYLOAD='file://events/firehose-record.json'
35+
PAYLOAD='fileb://events/firehose-record.json'
3636
;;
3737
lex)
38-
PAYLOAD='file://events/lex-flowers.json'
38+
PAYLOAD='fileb://events/lex-flowers.json'
3939
;;
4040
ddb)
41-
PAYLOAD='file://events/dynamodb-record.json'
41+
PAYLOAD='fileb://events/dynamodb-record.json'
4242
;;
4343
s3)
44-
PAYLOAD='file://events/s3-notification.json'
44+
PAYLOAD='fileb://events/s3-notification.json'
4545
;;
4646
sqs)
47-
PAYLOAD='file://events/sqs-record.json'
47+
PAYLOAD='fileb://events/sqs-record.json'
4848
;;
4949
*)
5050
echo -n "Unknown event type"
@@ -56,7 +56,7 @@ while true; do
5656
then
5757
aws lambda invoke --function-name $FUNCTION --payload $PAYLOAD out.json
5858
else
59-
aws lambda invoke --function-name $FUNCTION --payload file://event.json out.json
59+
aws lambda invoke --function-name $FUNCTION --payload fileb://event.json out.json
6060
fi
6161
cat out.json
6262
echo ""

sample-apps/java-events/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,6 @@ Use the following instructions to deploy the sample application.
2222
- The Bash shell. For Linux and macOS, this is included by default. In Windows 10, you can install the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10) to get a Windows-integrated version of Ubuntu and Bash.
2323
- [The AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html) v1.17 or newer.
2424

25-
If you use the AWS CLI v2, add the following to your [configuration file](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) (`~/.aws/config`):
26-
27-
```
28-
cli_binary_format=raw-in-base64-out
29-
```
30-
31-
This setting enables the AWS CLI v2 to load JSON events from a file, matching the v1 behavior.
32-
3325
# Setup
3426
Download or clone this repository.
3527

sample-apps/java17-examples/3-invoke.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ while true; do
3030
then
3131
aws lambda invoke --function-name $FUNCTION --payload $PAYLOAD out.json
3232
else
33-
aws lambda invoke --function-name $FUNCTION --payload file://event.json out.json
33+
aws lambda invoke --function-name $FUNCTION --payload fileb://event.json out.json
3434
fi
3535
cat out.json
3636
echo ""

0 commit comments

Comments
 (0)