redo type naming

This commit is contained in:
Ben Kraft
2021-03-19 18:40:58 -07:00
parent 58f4aff83b
commit fed38e4f55
20 changed files with 210 additions and 164 deletions
+2 -2
View File
@@ -9,10 +9,10 @@ import (
)
type SimpleQueryResponse struct {
User *User `json:"user"`
User *SimpleQueryUser `json:"user"`
}
type User struct {
type SimpleQueryUser struct {
Id string `json:"id"`
}