From acb641d32491441763e3d06d26366b10a8aa00f9 Mon Sep 17 00:00:00 2001 From: thosakwe Date: Sun, 12 Feb 2017 19:19:00 -0500 Subject: [PATCH] Lowercase --- lib/src/routes/routes.dart | 4 ++-- lib/src/services/services.dart | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/src/routes/routes.dart b/lib/src/routes/routes.dart index 7ec4c03c..996cac0e 100644 --- a/lib/src/routes/routes.dart +++ b/lib/src/routes/routes.dart @@ -2,7 +2,7 @@ library angel.routes; import 'package:angel_common/angel_common.dart'; -import 'controllers/controllers.dart' as Controllers; +import 'controllers/controllers.dart' as controllers; configureBefore(Angel app) async { app.before.add(cors()); @@ -56,6 +56,6 @@ configureAfter(Angel app) async { configureServer(Angel app) async { await configureBefore(app); await configureRoutes(app); - await app.configure(Controllers.configureServer); + await app.configure(controllers.configureServer); await configureAfter(app); } diff --git a/lib/src/services/services.dart b/lib/src/services/services.dart index 854a1ac4..9df63980 100644 --- a/lib/src/services/services.dart +++ b/lib/src/services/services.dart @@ -4,10 +4,10 @@ library angel.services; import 'package:angel_common/angel_common.dart'; import 'package:mongo_dart/mongo_dart.dart'; -import 'user.dart' as User; +import 'user.dart' as user; configureServer(Angel app) async { Db db = app.container.make(Db); - await app.configure(User.configureServer(db)); + await app.configure(user.configureServer(db)); }