January 2018
Intermediate to advanced
366 pages
9h 7m
English
Starting with the models is always interesting, because it is the best place to understand the business of a project.
At first, we declare the package on which we are working, and then the imports required for the project, as follows:
package main import (
"github.com/jmoiron/sqlx"
"golang.org/x/crypto/bcrypt"
)
Then, we make the declaration of our entity, Users. Go does not have classes, but instead uses structs. The final behavior is very similar to the OOP, of course, but there are peculiarities.
type User struct { ID int `json:"id" db:"id"` Name string `json:"name" db:"name"` Email string `json:"email" db:"email"` Password string `json:"password" ...Read now
Unlock full access