adjust indentation
[kivitendo-erp.git] / SL / ShopConnector / ALL.pm
index e579fb4..3f29c99 100644 (file)
@@ -2,20 +2,27 @@ package SL::ShopConnector::ALL;
 
 use strict;
 
+use SL::ShopConnector::Shopware;
+use SL::ShopConnector::WooCommerce;
+
 my %shop_connector_by_name = (
   shopware    => 'SL::ShopConnector::Shopware',
+  woocommerce    => 'SL::ShopConnector::WooCommerce',
 );
 
 my %shop_connector_by_connector = (
   shopware   => 'SL::ShopConnector::Shopware',
+  woocommerce => 'SL::ShopConnector::WooCommerce',
 );
 
 my @shop_connector_order = qw(
+  woocommerce
   shopware
 );
 
 my @shop_connectors = (
   { id => "shopware",   description => "Shopware" },
+  { id => "woocommerce",   description => "WooCommerce" },
 );