mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-15 03:42:23 +01:00
8 lines
337 B
JavaScript
8 lines
337 B
JavaScript
|
|
(function (app) {
|
||
|
|
'use strict';
|
||
|
|
|
||
|
|
app.registerModule('forums', ['core']);// The core module is required for special route handling; see /core/client/config/core.client.routes
|
||
|
|
app.registerModule('forums.services');
|
||
|
|
app.registerModule('forums.routes', ['ui.router', 'core.routes', 'forums.services']);
|
||
|
|
}(ApplicationConfiguration));
|