Boilerplate for how I like to write a backend web service.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
427 B

// +build tools
// Package tools is a faux package for tracking dependencies that don't make it into the code
package tools
import (
// these are 'go generate' tooling dependencies, not including in the binary
_ "github.com/shurcooL/vfsgen"
_ "github.com/shurcooL/vfsgen/cmd/vfsgendev"
_ "golang.org/x/tools/cmd/stringer"
_ "git.rootprojects.org/root/keypairs/cmd/keypairs"
_ "git.rootprojects.org/root/go-gitver/v2"
)