9 lines
156 B
JavaScript
9 lines
156 B
JavaScript
|
/*
|
||
|
* Faulty's Logger (FL2)
|
||
|
* Created for Node.JS
|
||
|
*/
|
||
|
|
||
|
module.exports = {
|
||
|
Logger: require("./lib/logging"),
|
||
|
conversions: require("./lib/conversion")
|
||
|
};
|