/**
* @ngdoc camera
* @name Cameras
* @module s4c.components.camera.Camera
*
* @description Configura a rota para o componente da câmera
*
*
*/
(function () {
'use strict';
angular.module('s4CApp')
.config(['$stateProvider', function ($stateProvider) {
$stateProvider
.state('camera', {
url: '/camera/:id',
templateUrl: 'app/components/camera/camera.html',
controller: 'CameraCtrl'
});
}]);
}());