Newer
Older
dub_jkp / source / app.d
  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. return runDubCommandLine(args);
  15. }