14 lines
266 B
D
14 lines
266 B
D
module angel.utils.init;
|
|
|
|
// Internal imports
|
|
import angel.utils.constants;
|
|
import angel.utils.logging;
|
|
// External imports
|
|
import std.stdio;
|
|
import std.file;
|
|
|
|
void init() {
|
|
if (!exists(Constants.workdir)) {
|
|
mkdir(Constants.workdir);
|
|
}
|
|
} |