mirror of
https://github.com/apricote/releaser-pleaser.git
synced 2026-02-06 17:57:05 +00:00
13 lines
226 B
Go
13 lines
226 B
Go
|
|
package rp
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
|
||
|
|
"github.com/go-git/go-git/v5"
|
||
|
|
)
|
||
|
|
|
||
|
|
func RunUpdater(ctx context.Context, version string, worktree *git.Worktree) error {
|
||
|
|
// TODO: Implement updater for Go,Python,ExtraFilesMarkers
|
||
|
|
return nil
|
||
|
|
}
|