1 // This file is written in D programming language
2 /**
3 *   Copyright: © 2013-2014 Anton Gushcha
4 *   License: Subject to the terms of the MIT license, as written in the included LICENSE file.
5 *   Authors: NCrashed <ncrashed@gmail.com>
6 */
7 module daemonize.d;
8 
9 public
10 {
11     import daemonize.log;
12     import daemonize.daemon;
13     import daemonize.keymap;
14 }
15 
16 version(Windows)
17 {
18     public import daemonize.windows;
19 }
20 else version(linux)
21 {
22     public import daemonize.linux;
23 }