mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
11 lines
157 B
JavaScript
11 lines
157 B
JavaScript
'use strict';
|
|
|
|
angular.module('etcdControlPanel')
|
|
.factory('prefixUrl', function(urlPrefix) {
|
|
|
|
return function(url) {
|
|
return urlPrefix + url;
|
|
}
|
|
|
|
});
|