mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-29 11:28:49 +00:00
14 lines
173 B
Go
14 lines
173 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/google/go-github/github"
|
|
)
|
|
|
|
type GithubClient struct {
|
|
client *github.Client
|
|
ctx context.Context
|
|
username string
|
|
}
|