All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.auties.protobuf.schema.ProtobufApplication Maven / Gradle / Ivy

package it.auties.protobuf.schema;

import it.auties.protobuf.schema.command.BaseCommand;
import picocli.CommandLine;

public class ProtobufApplication {
    public static void main(String... args) {
        var exitCode = new CommandLine(new BaseCommand(){}).execute(args);
        System.exit(exitCode);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy