1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-05-15 10:07:07 +01:00

Reorganize sources.

This commit is contained in:
devlinjd
2015-09-23 00:26:24 -04:00
parent 7363e48019
commit ccf6a1a1be
7 changed files with 17 additions and 3 deletions

View File

@ -4,7 +4,12 @@ Base resume generator for FluentCV.
*/
(function() {
var Class = require( './class' );
var Class = require( '../utils/class' );
/**
The BaseGenerator class is the root of the generator hierarchy. Functionality
common to ALL generators lives here.
*/
var BaseGenerator = module.exports = Class.extend({
init: function( outputFormat ) {
this.format = outputFormat;