tools.go

Summary

Maintainability
A
0 mins
Test Coverage
//go:build tools

// Place any runtime dependencies as imports in this file.
// Go modules will be forced to download and install them.
package tools

import (
    _ "github.com/restic/restic"
    _ "sigs.k8s.io/controller-tools/cmd/controller-gen"
)