mirror of
https://github.com/openstf/stf
synced 2025-10-05 19:42:01 +02:00
10 lines
301 B
JavaScript
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')
|
|
)
|
|
}])
|