mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00
13 lines
283 B
JavaScript
13 lines
283 B
JavaScript
var path = require('path'),
|
|
Generator = require('../../generator');
|
|
|
|
module.exports = ProviderGenerator;
|
|
|
|
function ProviderGenerator(options) {
|
|
Generator.call(this, options);
|
|
this.directory = 'providers';
|
|
}
|
|
|
|
ProviderGenerator.prototype = Object.create(Generator.prototype);
|
|
|