Add all functions as stubs

This commit is contained in:
kolaente 2020-08-18 21:27:33 +02:00
parent 65cdb76d0f
commit 7b2997bdb8
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 108 additions and 0 deletions

View File

@ -92,6 +92,34 @@ func init() {
Ldflags = `-X "` + PACKAGE + `/pkg/version.VersionNumber=` + VersionNumber + `" -X "main.Tags=` + Tags + `"`
}
func Clean() {
}
func Test() {
}
func TestCoverage() {
}
func IntegrationTest() {
}
func Lint() {
}
func Fmt() {
}
func FmtCheck() {
}
// Generates static content into the final binary
func Generate() error {
return exec.Command("go", "generate", PACKAGE+"/pkg/static").Run()
@ -106,3 +134,83 @@ func Build() error {
fmt.Print(string(out))
return err
}
func CompressBuild() {
}
func Release() {
}
func ReleaseDirs() {
}
func ReleaseWindows() {
}
func ReleaseLinux() {
}
func ReleaseDarwin() {
}
func ReleaseCompress() {
}
func ReleaseCopy() {
}
func ReleaseOsPackage() {
}
func ReleaseZip() {
}
func BuildDeb() {
}
func Reprepro() {
}
func GotSwag() {
}
func DoTheSwag() {
}
func MisspellCheck() {
}
func IneffassignCheck() {
}
func GocycloCheck() {
}
func StaticCheck() {
}
func GoSecCheck() {
}
func GoconstCheck() {
}