Skip to content

Commit 6385cb7

Browse files
committed
init project structure
1 parent 3677389 commit 6385cb7

File tree

4 files changed

+14
-0
lines changed

4 files changed

+14
-0
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
test:
2+
go test ./...
3+

go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/xconnio/workerpool
2+
3+
go 1.19

workerpool.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package workerpool

workerpool_test.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package workerpool_test
2+
3+
import "testing"
4+
5+
func TestHello(t *testing.T) {
6+
7+
}

0 commit comments

Comments
 (0)