UNPKG

graphqly

Version:
13 lines (11 loc) 193 B
/** * An interface for LoggerFactory * * @class LoggerFactory */ class LoggerFactory { getLogger(name) { throw new Error("Not implemented"); } } module.exports = LoggerFactory;