예제 #1
0
파일: account.go 프로젝트: rcijov/go
// Delete Account
func DelAccount(acc entities.Account) {
	a := db.Account{acc.Name, acc.Email, acc.Phone, acc.Password, acc.Type, acc.Date}
	a.DeleteAccount()
}