1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-05-15 01:57:08 +01:00
Files
HackMyResume/src/generators/base-generator.coffee
2016-02-02 13:38:12 -05:00

23 lines
462 B
CoffeeScript

###*
Definition of the BaseGenerator class.
@module generators/base-generator
@license MIT. See LICENSE.md for details.
###
###*
The BaseGenerator class is the root of the generator hierarchy. Functionality
common to ALL generators lives here.
###
module.exports = class BaseGenerator
###* Base-class initialize. ###
constructor: ( @format ) ->
###* Status codes. ###
codes: require '../core/status-codes'
###* Generator options. ###
opts: { }