Service formatting

This commit is contained in:
thosakwe 2016-09-14 20:21:15 -04:00
parent ef503d5739
commit 99024ed151

View file

@ -39,13 +39,13 @@ class ServiceCommand extends Command {
_generateMongoService(String name) {
return '''
import "package:angel_mongo/angel_mongo.dart";
import "package:angel_mongo/angel_mongo.dart";
class ${name}Service extends MongoService {
${name}Service(collection):super(collection) {
print("YEET");
}
}
''';
class ${name}Service extends MongoService {
${name}Service(collection):super(collection) {
print("YEET");
}
}
'''.trim();
}
}