type User struct {}// 1. return nilfunc GetUser() (*User, err) { ....return nil, err}// …