pkgdash/internal/source/gogs/gogs.go

16 lines
216 B
Go
Raw Normal View History

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() {}