Skip to content

Instantly share code, notes, and snippets.

@donvito
Created October 7, 2018 07:30
Show Gist options
  • Save donvito/4d36f696c6286878d61b712025452924 to your computer and use it in GitHub Desktop.
Save donvito/4d36f696c6286878d61b712025452924 to your computer and use it in GitHub Desktop.
Go Modules sample client code
package main
import (
hellomod "github.com/donvito/hellomod"
hellomodV2 "github.com/donvito/hellomod/v2"
)
func main() {
hellomod.SayHello()
hellomodV2.SayHello("Melvin")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment