user_delAccount.go 248 B

12345678910111213
  1. package gatesink
  2. import (
  3. "strconv"
  4. "bet24.com/servers/transaction"
  5. )
  6. // 删除应用账号
  7. func (this *user) deleteAccount(msg, data string) {
  8. ret := transaction.DeleteAccount(this.getUserId())
  9. this.WriteMsg(msg, strconv.FormatBool(ret))
  10. }