saasitone/pkg/services/users.go

10 lines
197 B
Go

package services
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
}