Last active
March 24, 2023 21:40
-
-
Save lku/fe1eb3df71399fa1537a1a7627f0a179 to your computer and use it in GitHub Desktop.
This file contains 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
package main | |
import ( | |
"user" | |
) | |
func main { | |
db := createDB | |
// Setup user package dependencies | |
user.SetDB(DB) | |
} |
This file contains 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
package user | |
import ( | |
"database/sql" | |
} | |
var db *sql.DB | |
func SetDB(db *sql.DB) { | |
db = db | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment