@@ -6,6 +6,10 @@ import (
"net/http"
)
+type UserResponse struct {
+ User User `json:"user"`
+}
+
type User struct {
ID string `json:"id"`
Username string `json:"username"`