1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-05 02:29:26 +02:00
OpenSTF/res/app/scripts/app.js

13 lines
197 B
JavaScript

define([
'angular'
, './controllers/index'
, './services/index'
]
, function(ng) {
return ng.module('app', [
'ngRoute'
, 'app.controllers'
, 'app.services'
])
}
)