Documentation ¶ Index ¶ type Group func NewGroup(id int, name string) Group func (g Group) String() string type Project func NewProject(id int, name, 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 } func NewGroup ¶ func NewGroup(id int, name string) Group func (Group) String ¶ func (g Group) String() string type Project ¶ type Project struct { Id int Name string Path string Sshurl string Httpurl string DefaultBranch string } func NewProject ¶ func NewProject(id int, name, 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.goproject.gouser.go Click to show internal directories. Click to hide internal directories.