Beispiel #1
0
// GetCustomer reads a Customer identified by id from database.
func GetCustomer(id uuid.UUID) *models.Customer {
	customer := new(models.Customer)
	customer.Read(id)
	return customer
}