mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2025-04-19 14:20:25 +01:00
14 lines
301 B
JavaScript
14 lines
301 B
JavaScript
/**
|
|
MS Word resume generator for FluentCV.
|
|
@license Copyright (c) 2015 by James M. Devlin. All rights reserved.
|
|
*/
|
|
|
|
var TemplateGenerator = require('./template-generator');
|
|
var WordGenerator = module.exports = TemplateGenerator.extend({
|
|
|
|
init: function(){
|
|
this._super( 'doc', 'xml' );
|
|
},
|
|
|
|
});
|