Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Are merge, migrate, generate functions implmented in the CLI? #1

Open
Vitali1389 opened this issue Oct 31, 2022 · 0 comments
Open

Are merge, migrate, generate functions implmented in the CLI? #1

Vitali1389 opened this issue Oct 31, 2022 · 0 comments

Comments

@Vitali1389
Copy link

package com.github.icelyframework.cli;

import picocli.CommandLine.Command;
import picocli.CommandLine.Help.Ansi;
import picocli.CommandLine.Option;

@command(name = "merge", description = "",
mixinStandardHelpOptions = true)
final public class MergeCommand implements Runnable {
@option(names = {"--verbose"}, description = "Print verbose output.")
boolean verbose;

@Override
public void run() {
    if (verbose) {
    }
}

}

e.x the run method looks like nothing is implemented.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant