Files

7 lines
114 B
Go

package response
type AuthResponse struct {
Token string `json:"token"`
User interface{} `json:"user"`
}