mirror of
https://github.com/dlang/tools.git
synced 2025-05-01 07:30:34 +03:00
16 lines
316 B
D
16 lines
316 B
D
module app;
|
|
|
|
import ddox.main;
|
|
import std.getopt;
|
|
import std.process;
|
|
import vibe.core.log;
|
|
|
|
int main(string[] args)
|
|
{
|
|
string git_target = "master";
|
|
getopt(args, std.getopt.config.passThrough,
|
|
"git-target", &git_target);
|
|
environment["GIT_TARGET"] = git_target;
|
|
setPlainLogging(true);
|
|
return ddoxMain(args);
|
|
}
|