package gogs type Gogs struct { Token string } func NewGogs(t string) *Gogs { return &Gogs{ Token: t, } } func (g *Gogs) RequestOpen() {} func (g *Gogs) RequestClose() {} func (g *Gogs) RequestUpdate() {}