1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-06 03:50:04 +02:00
OpenSTF/res/app/scripts/app.js

13 lines
199 B
JavaScript

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