add cmd file and go module file

This commit is contained in:
Callan Bryant 2020-02-09 20:56:51 +00:00
commit cc8309fab2
No known key found for this signature in database
GPG Key ID: C31FA9DF3ACBFFAA
2 changed files with 13 additions and 0 deletions

10
cmd/dsnet.go Normal file
View File

@ -0,0 +1,10 @@
package main
import (
"os"
"github.com/naggie/dsnet"
)
func main() {
}

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module github.com/naggie/dsnet
go 1.13