diff --git a/entity.features.inc b/entity.features.inc
index d856863..f02a66a 100644
--- a/entity.features.inc
+++ b/entity.features.inc
@@ -133,19 +133,6 @@ class EntityDefaultFeaturesController {
 }
 
 /**
- * Implements of hook_features_api().
- */
-function entity_features_api() {
-  $items = array();
-  foreach (entity_crud_get_info() as $type => $info) {
-    if (!empty($info['exportable']) && $controller = entity_features_get_controller($type)) {
-      $items += $controller->api();
-    }
-  }
-  return $items;
-}
-
-/**
  * Features component callback.
  */
 function entity_features_export_options($entity_type) {
diff --git a/entity.module b/entity.module
index 08e4662..04def75 100644
--- a/entity.module
+++ b/entity.module
@@ -1299,3 +1299,18 @@ function entity_ctools_plugin_directory($module, $plugin) {
     return 'ctools/content_types';
   }
 }
+
+
+
+/**
+ * Implements of hook_features_api().
+ */
+function entity_features_api() {
+  $items = array();
+  foreach (entity_crud_get_info() as $type => $info) {
+    if (!empty($info['exportable']) && $controller = entity_features_get_controller($type)) {
+      $items += $controller->api();
+    }
+  }
+  return $items;
+}
