diff --git a/core/lib/Thelia/Config/Resources/routing.xml b/core/lib/Thelia/Config/Resources/routing.xml
index 54159734c..c213039ae 100755
--- a/core/lib/Thelia/Config/Resources/routing.xml
+++ b/core/lib/Thelia/Config/Resources/routing.xml
@@ -56,6 +56,7 @@
+
diff --git a/local/modules/Front/Config/config.xml b/local/modules/Front/Config/config.xml
new file mode 100644
index 000000000..029e5880a
--- /dev/null
+++ b/local/modules/Front/Config/config.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/local/modules/Front/Config/module.xml b/local/modules/Front/Config/module.xml
new file mode 100644
index 000000000..de351133d
--- /dev/null
+++ b/local/modules/Front/Config/module.xml
@@ -0,0 +1,20 @@
+
+
+ Front\Front
+
+ front integration
+
+
+
+ front office module
+
+
+ 0.1
+
+ Thelia team
+ info@thelia.net
+
+ classic
+ 2.0.0
+ dev
+
diff --git a/core/lib/Thelia/Config/Resources/routing/front.xml b/local/modules/Front/Config/routing.xml
similarity index 100%
rename from core/lib/Thelia/Config/Resources/routing/front.xml
rename to local/modules/Front/Config/routing.xml
diff --git a/local/modules/Front/Front.php b/local/modules/Front/Front.php
new file mode 100644
index 000000000..67498ba24
--- /dev/null
+++ b/local/modules/Front/Front.php
@@ -0,0 +1,35 @@
+. */
+/* */
+/*************************************************************************************/
+
+namespace Front;
+
+use Thelia\Module\BaseModule;
+
+class Front extends BaseModule
+{
+ /**
+ * YOU HAVE TO IMPLEMENT HERE ABSTRACT METHODD FROM BaseModule Class
+ * Like install and destroy
+ */
+
+}