Skip to content

Instantly share code, notes, and snippets.

@rlgino
rlgino / customerrepository.go
Last active February 23, 2023 02:40
Variables Globales en Golang, si o no?
package db
import "github.com/go-pg/pg/v10"
var db *pg.DB // Nuestra variable global, la cual probablemente inicializamos en el mail.go
type Customer struct {
ID int
Name string
LastName string