Browse Source

Initial commit

master v0.0.1-pre
Sam Hofius 4 years ago
commit
d349d72838
  1. 3
      go.mod
  2. 13
      pkg/dxb/dxb.go
  3. 0
      pkg/dxb/dxb.go~

3
go.mod

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

13
pkg/dxb/dxb.go

@ -0,0 +1,13 @@ @@ -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~

Loading…
Cancel
Save