package auth import "gorm.io/gorm" type Authentication struct { db *gorm.DB } func NewAuth(db *gorm.DB) *Authentication { return &Authentication{db} }