workflow-pr: more tests

This commit is contained in:
2024-11-13 16:18:27 +01:00
parent e8e51e21ca
commit 1d7d0a7b43
4 changed files with 213 additions and 7 deletions

View File

@@ -41,10 +41,10 @@ type GitHandler struct {
}
type GitHandlerGenerator interface {
CreateGitHandler(git_author, email, prj_name string) (*GitHandler, error);
CreateGitHandler(git_author, email, prj_name string) (*GitHandler, error)
}
type GitHandlerImpl struct {}
type GitHandlerImpl struct{}
func (*GitHandlerImpl) CreateGitHandler(git_author, email, prj_name string) (*GitHandler, error) {
var err error