use of com.bakdata.conquery.handler.GroupHandler in project conquery by bakdata.
the class AutoDoc method start.
public void start(File docs) throws IOException {
docs.mkdirs();
for (Group group : GROUPS) {
File target = new File(docs, group.getName() + ".md");
try (var out = new SimpleWriter(Out.file(target).withUTF8().asWriter())) {
new GroupHandler(scan, group, out, docs.getCanonicalFile().getParentFile()).handle();
}
log.info("Written file {}", target.getCanonicalPath());
}
}
Aggregations