├── .gitignore ├── Gopkg.lock ├── Gopkg.toml ├── Makefile ├── Readme.md ├── data ├── post1.json ├── post2.json ├── post3.json └── put3.json ├── functions ├── delete.go ├── get.go ├── list-by-year.go ├── moviedao.go ├── post.go └── put.go ├── go-crud.iml ├── img ├── allPostsDynamoDBTable.jpg ├── firstDeleteDynamoDBTable.jpg ├── firstPostDynamoDBTable.jpg ├── firstUpdateDynamoDBTable.jpg └── initialDynamoDBTable.jpg └── serverless.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/.gitignore -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/Readme.md -------------------------------------------------------------------------------- /data/post1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/data/post1.json -------------------------------------------------------------------------------- /data/post2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/data/post2.json -------------------------------------------------------------------------------- /data/post3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/data/post3.json -------------------------------------------------------------------------------- /data/put3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/data/put3.json -------------------------------------------------------------------------------- /functions/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/functions/delete.go -------------------------------------------------------------------------------- /functions/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/functions/get.go -------------------------------------------------------------------------------- /functions/list-by-year.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/functions/list-by-year.go -------------------------------------------------------------------------------- /functions/moviedao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/functions/moviedao.go -------------------------------------------------------------------------------- /functions/post.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/functions/post.go -------------------------------------------------------------------------------- /functions/put.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/functions/put.go -------------------------------------------------------------------------------- /go-crud.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/go-crud.iml -------------------------------------------------------------------------------- /img/allPostsDynamoDBTable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/img/allPostsDynamoDBTable.jpg -------------------------------------------------------------------------------- /img/firstDeleteDynamoDBTable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/img/firstDeleteDynamoDBTable.jpg -------------------------------------------------------------------------------- /img/firstPostDynamoDBTable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/img/firstPostDynamoDBTable.jpg -------------------------------------------------------------------------------- /img/firstUpdateDynamoDBTable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/img/firstUpdateDynamoDBTable.jpg -------------------------------------------------------------------------------- /img/initialDynamoDBTable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/img/initialDynamoDBTable.jpg -------------------------------------------------------------------------------- /serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petecj2/go-sls-crudl/HEAD/serverless.yml --------------------------------------------------------------------------------