fix tests

This commit is contained in:
Ben Kraft
2020-07-15 17:38:47 -07:00
parent d2d5c9469d
commit e9b90d861f
+6 -6
View File
@@ -1,11 +1,11 @@
type ProfileData struct {
Name *string `json:"name"`
Emails []string `json:"emails"`
}
type Response struct {
User *struct {
Id string `json:"id"`
ProfileData
profileData
} `json:"user"`
}
type profileData struct {
Name *string `json:"name"`
Emails []string `json:"emails"`
}