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 QueryWithDoubleAliasResponse struct {
User *User `json:"user"`
User *QueryWithDoubleAliasUser `json:"user"`
}
type User struct {
type QueryWithDoubleAliasUser struct {
ID string
AlsoID string
}