refactor Subcommand to abstract class, add add link and tag subcommands
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
qvalentin 2022-05-15 13:19:33 +02:00
parent 4e74f8b10e
commit 78730bc69f
Signed by: qvalentin
GPG key ID: C979FA1EAFCABF1C
7 changed files with 170 additions and 11 deletions

View file

@ -14,7 +14,6 @@ public class CustomTagsCliAdapter {
public void addCustomTagMatcher(String name, String regexString) {
customTagsUseCase.addCustomTagMatcher(new CustomTagMatcher(new TagName(name), regexString));
}
}