Hi folks.
Trying to have some debug functions in my module without using my costum entry proint which requires many arguments
here is my entry point now. i want one that takes no argument.
func New(
gitBranch string,
gitMsg string,
gitSha string,
gitSource string,
githubToken *dagger.Secret,
// +optional
relTag string,
// +optional
gitRepo string,
) *PfTools {
return &PfTools{
Gitbr: gitBranch,
Gitmsg: gitMsg,
Gitsha: gitSha,
Gitsource: gitSource,
RelTag: relTag,
GithubToken: githubToken,
}
}
Regards