mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2025-05-15 01:57:08 +01: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'
|