業務でAmazonLambdaを使う機会があり、Apex(Go)を試していい感じだったのでその紹介とハマりポイントを幾つか紹介しようかと。 github.com 導入 すごく簡単で、 https://github.com/apex/apex#installation に書いてある通りインストールして apex init で対話式でプロジェクト名とか入力するだけです。 ExampleのGo実装をそのままコピって apex deploy すれば速攻でdeployも出来ます。 exampleはこちら -> https://github.com/apex/apex/tree/master/_examples/go package main import ( "encoding/json" "github.com/apex/go-apex" ) type message struct { Hello