mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 16:13:24 +02:00
11 lines
302 B
JavaScript
11 lines
302 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')
|
|
)
|
|
}])
|