Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var (
// Service expose serviceProvider
Service *serviceProvider
)
Functions ¶
This section is empty.
Types ¶
type Language ¶
type Language struct {
Language string `bson:"Language" json:"language"`
Proportion float32 `bson:"Proportion" json:"proportion"`
}
Language - represents the GitHub repository program language information.
type Repos ¶
type Repos struct {
ID bson.ObjectId `bson:"_id,omitempty" json:"id"`
Owner *string `bson:"Owner" json:"owner"`
Avatar *string `bson:"Avatar" json:"avatar"`
Name *string `bson:"Name" json:"name"`
Image *string `bson:"Image" json:"image"`
Intro *string `bson:"Intro" json:"intro"`
Readme *string `bson:"Readme" json:"readme"`
Stars *int `bson:"Stars" json:"stars"`
Forks *int `bson:"Forks" json:"forks"`
Topics []string `bson:"Topics" json:"topics"`
Languages []Language `bson:"Languages" json:"languages"`
Active bool `bson:"Active" json:"active"`
Created time.Time `bson:"Created" json:"created"`
}
Repos - represents the GitHub repository information.
Click to show internal directories.
Click to hide internal directories.