https://github.com/apiorno/lambda-yt-example
Simple GO aws lambda function
https://github.com/apiorno/lambda-yt-example
Last synced: 3 months ago
JSON representation
Simple GO aws lambda function
- Host: GitHub
- URL: https://github.com/apiorno/lambda-yt-example
- Owner: apiorno
- License: mit
- Created: 2022-08-20T15:24:19.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-20T15:26:03.000Z (over 3 years ago)
- Last Synced: 2025-02-11T12:21:20.013Z (11 months ago)
- Language: Go
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### Build for Linux to work on AWS
```
GOARCH=amd64 GOOS=linux go build main.go
```
### Zip to upload to AWS lambda function
```
zip function.zip main
```