Skip to content

Instantly share code, notes, and snippets.

@steevehook
Last active October 22, 2019 11:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steevehook/1872d4c116ed39de8c164d8da1c537af to your computer and use it in GitHub Desktop.
Save steevehook/1872d4c116ed39de8c164d8da1c537af to your computer and use it in GitHub Desktop.
package main
import "github.com/gophertuts/go-basics/packages/package-types/services"
func main() {
services.NewS1()
}
package services
import "fmt"
func NewS1() {
fmt.Println("creating new S1 service")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment