dev.jbang.source.CmdGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbang-cli Show documentation
Show all versions of jbang-cli Show documentation
JBang Command Line Interface
The newest version!
package dev.jbang.source;
import java.io.IOException;
public interface CmdGenerator {
String generate() throws IOException;
static CmdGeneratorBuilder builder(Project project) {
return new CmdGeneratorBuilder(BuildContext.forProject(project));
}
static CmdGeneratorBuilder builder(BuildContext ctx) {
return new CmdGeneratorBuilder(ctx);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy