#8 Finalization RequestUpdate and RequestClose.

This commit is contained in:
Gorbunov Kirill Andreevich
2024-03-21 14:36:32 +03:00
parent 1680270c0a
commit 785e8e368e
10 changed files with 131 additions and 393 deletions

View File

@@ -20,9 +20,9 @@ func NewGithub(cfg configcli.Config) *Github {
func (g *Github) RequestOpen(ctx context.Context, branch string, path string, mod modules.Update) error {
return nil
}
func (g *Github) RequestClose(ctx context.Context, cfg *configcli.Config, branch string, path string) error {
func (g *Github) RequestClose(ctx context.Context, branch string, path string) error {
return nil
}
func (g *Github) RequestUpdate(ctx context.Context, cfg *configcli.Config, branch string, path string, mod modules.Update) error {
func (g *Github) RequestUpdate(ctx context.Context, branch string, path string, mod modules.Update) error {
return nil
}