Skip to content

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

@Vitali1389

Description

@Vitali1389

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions