saasitone/pkg/services/users.go

10 lines
197 B
Go
Raw Normal View History

package services
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.
type DBUserClient struct {
2024-07-11 21:09:15 -07:00
db *sql.DB
}