awslabs / aws-lambda-go-api-proxy

lambda-go-api-proxy makes it easy to port APIs written with Go frameworks such as Gin (https://gin-gonic.github.io/gin/ ) to AWS Lambda and Amazon API Gateway.
Apache License 2.0
1.04k stars 197 forks source link

Add Iris framework missing dependency #93

Open NikSchaefer opened 3 years ago

NikSchaefer commented 3 years ago

In VSCode the Error Given, picked up from the Golang extension finds the missing module of

github.com/kataras/iris/v12 This module is necessary because github.com/kataras/iris/v12 is imported in github.com/awslabs/aws-lambda-go-api-proxy/iris.

error while importing github.com/kataras/iris/v12/i18n: missing go.sum entry for module providing package gopkg.in/ini.v1 (imported by github.com/kataras/iris/v12/i18n); to add: go get github.com/katara

This is a simple fix of go get to update the go.sum and resolve the error

mrusme commented 3 years ago

It would probably be better to not merge this and instead pursue #92 because of #81.