--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/common/corpus-common-addon/app/services/bnf-resolver.js Thu Feb 25 21:26:15 2016 +0100
@@ -0,0 +1,16 @@
+import Ember from 'ember';
+import store from 'corpus-common-addon/utils/store';
+import * as constants from 'corpus-common-addon/utils/constants'
+
+export default Ember.Service.extend({
+ env: function() {
+ return Ember.getOwner(this).resolveRegistration('config:environment')
+ },
+ _getStoreKey: function(id) {
+ return 'rameau:'+id;
+ },
+ getName: function(id) {
+
+ }
+
+});