2024-07-19 20:44:09 -07:00
|
|
|
package models
|
2024-07-11 21:09:15 -07:00
|
|
|
|
|
|
|
import "database/sql"
|
|
|
|
|
|
|
|
// UserClient is a struct that can be used to create custom methods for
|
|
|
|
// interacting with users in the database.
|
2024-07-11 21:31:54 -07:00
|
|
|
type DBUserClient struct {
|
2024-07-19 20:44:09 -07:00
|
|
|
DB *sql.DB
|
2024-07-11 21:09:15 -07:00
|
|
|
}
|