Files
Message-Push-Nest/service/auth_service/auth.go
T

13 lines
198 B
Go
Raw Normal View History

2023-12-30 17:40:20 +08:00
package auth_service
import "message-nest/models"
type Auth struct {
Username string
Password string
}
func (a *Auth) Check() (bool, error) {
return models.CheckAuth(a.Username, a.Password)
}