10 lines
195 B
Go
10 lines
195 B
Go
package models
|
|
|
|
import "database/sql"
|
|
|
|
// UserClient is a struct that can be used to create custom methods for
|
|
// interacting with users in the database.
|
|
type DBUserClient struct {
|
|
DB *sql.DB
|
|
}
|