10 lines
167 B
JavaScript
Raw Normal View History

2020-11-08 20:30:15 -07:00
"use strict";
2015-01-13 03:18:13 -07:00
2020-11-08 20:30:15 -07:00
angular
.module("myApp.version", [
"myApp.version.interpolate-filter",
"myApp.version.version-directive",
])
2015-01-13 03:18:13 -07:00
2020-11-08 20:30:15 -07:00
.value("version", "0.8.0");