Added missing docstrings

This commit is contained in:
Tristan B. Velloza Kildaire 2021-12-23 15:14:51 +02:00
parent 24bc5bec34
commit e4509f1dfc
2 changed files with 10 additions and 0 deletions

View File

@ -1,5 +1,11 @@
module dlog.core;
/**
* Core module containing types pertaining to the base Logger
* class and base MessageTransform class (along with a default
* transform, DefaultTransform)
*/
import std.conv : to;
import dlog.defaults;

View File

@ -1,5 +1,9 @@
module dlog.defaults;
/**
* Includes defaults such as the DefaultLogger
*/
import dlog.core : Logger;
/**