mirror of
https://github.com/dlang/tools.git
synced 2025-05-04 00:54:08 +03:00
10 lines
130 B
D
10 lines
130 B
D
module app;
|
|
|
|
import ddox.main;
|
|
import vibe.core.log;
|
|
|
|
int main(string[] args)
|
|
{
|
|
setPlainLogging(true);
|
|
return ddoxMain(args);
|
|
}
|