Remove globals initializer

Fixes #62
This commit is contained in:
Matthew Dillon 2015-11-17 06:43:33 -07:00
parent 04d05f9795
commit 99309e0e91
7 changed files with 28 additions and 47 deletions

9
app/services/globals.js Normal file
View file

@ -0,0 +1,9 @@
import Ember from 'ember';
import config from '../config/environment';
const { Service } = Ember;
export default Service.extend({
genus: config.APP.genus,
apiURL: config.apiURL,
});