package users import ( "gorm.io/gorm" ) type Service struct { db *gorm.DB } func New(db *gorm.DB) *Service { return &Service{ db: db, } } type Password struct { Password string `json:"password"` }