Skip to content

Commit f36a55b

Browse files
committed
Add go.mod and main.go
1 parent e22ba7b commit f36a55b

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

go.mod

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/goshutils/true
2+
3+
go 1.19

main.go

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package main
2+
3+
import "os"
4+
5+
func main() {
6+
os.Exit(0)
7+
}

0 commit comments

Comments
 (0)