Initial commit

This commit is contained in:
2021-01-24 17:17:03 -05:00
commit d349d72838
3 changed files with 16 additions and 0 deletions

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module go.devi1.net/testpkg
go 1.15

13
pkg/dxb/dxb.go Normal file
View File

@ -0,0 +1,13 @@
package dxb
import "fmt"
const (
Name = "Sam"
Username = "dxb"
Profile = "https://samhofi.us/kul?user=dxb"
)
func Info() string {
return fmt.Sprintf("name=%s, username=%s, profile=%s", Name, Username, Profile)
}

0
pkg/dxb/dxb.go~ Normal file
View File