mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 09:56:22 +00:00
15 lines
358 B
CoffeeScript
15 lines
358 B
CoffeeScript
###*
|
|
Definition of the TextGenerator class.
|
|
@module generators/text-generator
|
|
@license MIT. See LICENSE.md for details.
|
|
###
|
|
|
|
TemplateGenerator = require './template-generator'
|
|
|
|
###*
|
|
The TextGenerator generates a plain-text resume via the TemplateGenerator.
|
|
###
|
|
module.exports = class TextGenerator extends TemplateGenerator
|
|
|
|
constructor: () -> super 'txt'
|