فهرست منبع

Synced GoVendor

Yoginth 7 سال پیش
والد
کامیت
a4a1e56245
2فایلهای تغییر یافته به همراه5 افزوده شده و 22 حذف شده
  1. 0 2
      vendor/github.com/urfave/cli/app.go
  2. 5 20
      vendor/gitlab.com/gitote/go-gitote-client/user.go

+ 0 - 2
vendor/github.com/urfave/cli/app.go

@@ -37,8 +37,6 @@ type App struct {
 	ArgsUsage string
 	// Version of the program
 	Version string
-	// Version of the API
-	APIVersion string
 	// Description of the program
 	Description string
 	// List of commands to execute

+ 5 - 20
vendor/gitlab.com/gitote/go-gitote-client/user.go

@@ -3,30 +3,15 @@ package gitote
 import (
 	"encoding/json"
 	"fmt"
-	"time"
 )
 
 // User represents a API user.
 type User struct {
-	ID               int64     `json:"id"`
-	UserName         string    `json:"login"`
-	FullName         string    `json:"full_name"`
-	Website          string    `json:"website"`
-	Email            string    `json:"email"`
-	Company          string    `json:"company"`
-	Location         string    `json:"location"`
-	Description      string    `json:"bio"`
-	IsAdmin          bool      `json:"site_admin"`
-	NumRepos         int       `json:"repos"`
-	Created          time.Time `json:"created_at"`
-	Updated          time.Time `json:"updated_at"`
-	NumFollowing     int       `json:"following"`
-	NumFollowers     int       `json:"followers"`
-	AvatarUrl        string    `json:"avatar_url"`
-	FollowersURL     string    `json:"followers_url"`
-	FollowingURL     string    `json:"following_url"`
-	OrganizationsURL string    `json:"organizations_url"`
-	ReposURL         string    `json:"repos_url"`
+	ID        int64  `json:"id"`
+	UserName  string `json:"login"`
+	FullName  string `json:"full_name"`
+	Email     string `json:"email"`
+	AvatarUrl string `json:"avatar_url"`
 }
 
 // MarshalJSON implements the json.Marshaler interface for User