1 /**
2  * Copyright: Copyright (c) 2016 Jacob Carlborg. All rights reserved.
3  * Authors: Jacob Carlborg
4  * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0)
5  */
6 module dstep.main;
7 
8 version (unittest) { }
9 else:
10 
11 /**
12  *  Application entry point, handles CLI/config and forwards to
13  *  dstep.driver.Application to do actual work.
14  */
15 int main (string[] args)
16 {
17     import dstep.driver.CommandLine: run;
18     return run(args);
19 }