登录事件的回调函数是 onLogin ,它没有任何参数和返回值, 它只会在用户登录成功时被调用。
onLogin
package main import ( "fmt" ) func onLogin() { fmt.Println("登入成功") }