Documentation ¶ Index ¶ type Group func NewGroup(id int, name, description, path, url string) Group func (g Group) String() string type Project func NewProject(id int, name, description, branch, path, sshurl, httpurl string) Project func (p Project) String() string type User Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Group ¶ type Group struct { Id int Name string Description string Path string WebUrl string } func NewGroup ¶ func NewGroup(id int, name, description, path, url string) Group func (Group) String ¶ func (g Group) String() string type Project ¶ type Project struct { Id int Name string Description string Path string Sshurl string Httpurl string DefaultBranch string } func NewProject ¶ func NewProject(id int, name, description, branch, path, sshurl, httpurl string) Project func (Project) String ¶ func (p Project) String() string type User ¶ type User struct { // contains filtered or unexported fields } Source Files ¶ View all Source files group.go project.go user.go Click to show internal directories. Click to hide internal directories.