2015-11-30 20:21:39 +03:00
|
|
|
import Ember from 'ember';
|
|
|
|
|
2016-06-11 19:52:36 +03:00
|
|
|
const {run} = Ember;
|
|
|
|
|
2015-11-30 20:21:39 +03:00
|
|
|
export default function destroyApp(application) {
|
2016-06-11 19:52:36 +03:00
|
|
|
run(application, 'destroy');
|
2015-11-30 20:21:39 +03:00
|
|
|
}
|