/** * @Title: * @Description: * @Author: Yuki Wong(iyuki0430@msn.com) * @Update: * @Date: 2020/7/20 11:50 * @File: AccountService.go * @Software: GoLand **/ package AccountService import ( "dsSupport/MyModel/Account/AccountDAO" ) func Login(username string, password string) (bool, string) { result, message := AccountDAO.Login(username, password) return result, message }