23 lines
427 B
Go
23 lines
427 B
Go
package users
|
|
|
|
import (
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
// Service Represents a service with a database connection.
|
|
type Service struct {
|
|
db *gorm.DB
|
|
}
|
|
|
|
// Service - Creates a new Service instance, initializing it with a GORM database connection.
|
|
func New(db *gorm.DB) *Service {
|
|
return &Service{
|
|
db: db,
|
|
}
|
|
}
|
|
|
|
// Password struct represents a user's password with a JSON tag.
|
|
type Password struct {
|
|
Password string `json:"password"`
|
|
}
|