16 lines
216 B
Go
16 lines
216 B
Go
|
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() {}
|