Skip to content
This repository was archived by the owner on May 6, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
bin
fargate
dist
vendor
102 changes: 102 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

54 changes: 54 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@

# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"


[[constraint]]
name = "github.com/aws/aws-sdk-go"
version = "1.12.70"

[[constraint]]
name = "github.com/golang/mock"
revision = "b3e60bcdc577185fce3cf625fc96b62857ce5574"

[[constraint]]
branch = "master"
name = "github.com/hashicorp/golang-lru"

[[constraint]]
name = "github.com/kyokomi/emoji"
version = "1.5.0"

[[constraint]]
branch = "master"
name = "github.com/mgutz/ansi"

[[constraint]]
name = "github.com/spf13/cobra"
revision = "ccaecb155a2177302cb56cae929251a256d0f646"

[[constraint]]
branch = "master"
name = "golang.org/x/crypto"

[[constraint]]
branch = "master"
name = "golang.org/x/time"
2 changes: 1 addition & 1 deletion acm/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package acm

//go:generate mockgen -package client -destination=mock/client/client.go github.com/jpignata/fargate/acm Client
//go:generate mockgen -package sdk -destination=mock/sdk/acmiface.go github.com/aws/aws-sdk-go/service/acm/acmiface ACMAPI
//go:generate mockgen -package sdk -source ../vendor/github.com/aws/aws-sdk-go/service/acm/acmiface/interface.go -destination=mock/sdk/acmiface.go github.com/aws/aws-sdk-go/service/acm/acmiface ACMAPI

import (
"github.com/aws/aws-sdk-go/aws/session"
Expand Down
Loading