Last active
March 23, 2022 15:07
-
-
Save mitchallen/ee5bd6b7e835f73f2fa0e3322f79659a to your computer and use it in GitHub Desktop.
go-lib init.go
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Author: Mitch Allen | |
| * File: init.go | |
| */ | |
| package lib | |
| import ( | |
| "fmt" | |
| ) | |
| func init() { | |
| fmt.Println("[go-lib] initializing ...") | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment