In my application I have two modules, which are used for routing. Here is the code of it
//Module1:
angular.module(\'phonecat\', []).
You can create a top level module that will have your two modules as injected dependencies:
var app = angular.module('app', ['phonecat', 'computer']);
and then in your html use:ng-app="app"
ng-app="app"