mirror of https://github.com/deavmi/gogga.git
parent
9bf782b107
commit
7124da73de
|
@ -16,6 +16,8 @@
|
|||
The API is rather straight-forward, simply create a new logger and then you can use it as such:
|
||||
|
||||
```d
|
||||
import gogga;
|
||||
|
||||
GoggaLogger gLogger = new GoggaLogger();
|
||||
|
||||
gLogger.info("This is an info message");
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
module gogga;
|
||||
module gogga.core;
|
||||
|
||||
import std.conv : to;
|
||||
import std.stdio : write, stdout;
|
|
@ -0,0 +1,3 @@
|
|||
module gogga;
|
||||
|
||||
public import gogga.core : GoggaLogger;
|
Loading…
Reference in New Issue