1
1
mirror of https://github.com/joshdk/drone-skip-pipeline synced 2024-11-25 12:27:37 +01:00

chore: go mod and main (#2)

This commit is contained in:
Josh Komoroske 2021-11-13 17:55:33 -08:00 committed by GitHub
parent c2de9c45ce
commit bc2bc6d927
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions

3
go.mod Normal file

@ -0,0 +1,3 @@
module github.com/joshdk/drone-skip-pipeline
go 1.17

7
main.go Normal file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("drone-skip-pipeline")
}