1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-05 19:42:01 +02:00
OpenSTF/res/app/control-panes/automation/index.js
2016-01-19 23:08:33 +09:00

10 lines
301 B
JavaScript

module.exports = angular.module('stf.automation', [
require('./store-account').name,
require('./device-settings').name
])
.run(['$templateCache', function($templateCache) {
$templateCache.put(
'control-panes/automation/automation.jade'
, require('./automation.jade')
)
}])