Newer
Older
dub_jkp / source / app.d
@Sönke Ludwig Sönke Ludwig on 13 Nov 2013 331 bytes Move command line processing to a separate module.
  1. /**
  2. Application entry point.
  3.  
  4. Copyright: © 2013 rejectedsoftware e.K.
  5. License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file.
  6. Authors: Sönke Ludwig
  7. */
  8. module app;
  9.  
  10. import dub.commandline;
  11.  
  12. int main(string[] args)
  13. {
  14. version (unittest) return 0;
  15. else return runDubCommandLine(args);
  16. }
  17.