push
github
56 of 154 new or added lines in 10 files covered. (36.36%)
2 existing lines in 1 file now uncovered.171 of 470 relevant lines covered (36.38%)
0.37 hits per line
1 |
package main
|
|
2 |
|
|
3 |
import (
|
|
4 |
"github.com/aws/aws-lambda-go/lambda"
|
|
5 |
"github.com/fogfish/blueprint-serverless-golang/internal/services/restapi"
|
|
6 |
httpd "github.com/fogfish/gouldian/v2/server/aws/apigateway"
|
|
7 |
) |
|
8 |
|
|
NEW
|
func main() {
|
× |
NEW
|
api := restapi.NewPetShopAPI() |
× |
NEW
|
|
× |
NEW
|
lambda.Start( |
× |
NEW
|
httpd.Serve( |
× |
NEW
|
api.Create(), |
× |
NEW
|
), |
× |
NEW
|
) |
× |
NEW
|
} |
× |