Skip to content

Commit

Permalink
Update inline tools.go documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
danehlim committed May 3, 2023
1 parent d9bdd9a commit 88c8976
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions agent/tools.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@
// express or implied. See the License for the specific language governing
// permissions and limitations under the License.

// The tools package manages tool dependencies with go.mod.
package tools

// Some packages are required by tools we use but are not used explicitly in the code.
// Import such packages so that they are copied to the vendor directory by go mod.
import (
_ "github.com/aws/aws-sdk-go/private/model/api"
_ "github.com/aws/aws-sdk-go/private/util"
Expand Down
3 changes: 2 additions & 1 deletion ecs-agent/tools.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@
// express or implied. See the License for the specific language governing
// permissions and limitations under the License.

// The tools package manages tool dependencies with go.mod.
package tools

// Some packages are required by tools we use but are not used explicitly in the code.
// Import those packages so that they are copied to the vendor directory by go mod.
// Import such packages so that they are copied to the vendor directory by go mod.
import (
_ "github.com/golang/mock/mockgen/model"
)

0 comments on commit 88c8976

Please sign in to comment.