1

Initial commit

This commit is contained in:
2025-06-13 04:15:35 +04:00
commit 1c350b8dfb
14 changed files with 500 additions and 0 deletions

17
lib/github/github.go Normal file
View File

@@ -0,0 +1,17 @@
package github
import (
"github.com/google/go-github/v72/github"
"source.hodakov.me/hdkv/github-release/lib/app"
)
type Github struct {
app *app.App
client *github.Client
}
func New(app *app.App) *Github {
return &Github{
app: app,
}
}