mirror of
https://github.com/apricote/releaser-pleaser.git
synced 2026-01-13 13:21:00 +00:00
12 lines
226 B
Go
12 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
|
|
}
|