g2i/g2i/client.go
2019-03-14 18:42:15 +03:00

17 lines
252 B
Go

package g2i
import (
"context"
)
type Client struct {
GHClient *GithubClient
IDECClient *IDECClient
}
func (c *Config) NewClient(ctx context.Context) (*Client, error) {
client := &Client{}
ghc := NewGithubClient(c, ctx)
return client, nil
}