From 4dd4e89452a1911c86f3f1fa558d3ba6a7622244 Mon Sep 17 00:00:00 2001 From: Awilum Date: Tue, 7 Jan 2020 18:34:13 +0300 Subject: [PATCH] refactor(core): move /routes/api.php to /routes/api/delivery.php #159 --- flextype/bootstrap.php | 2 +- flextype/routes/{api.php => api/delivery.php} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename flextype/routes/{api.php => api/delivery.php} (100%) diff --git a/flextype/bootstrap.php b/flextype/bootstrap.php index 729cea7c..d3753cec 100755 --- a/flextype/bootstrap.php +++ b/flextype/bootstrap.php @@ -129,7 +129,7 @@ include_once 'middlewares.php'; * Include Routes (web, api) */ include_once 'routes/web.php'; -include_once 'routes/api.php'; +include_once 'routes/api/delivery.php'; /** diff --git a/flextype/routes/api.php b/flextype/routes/api/delivery.php similarity index 100% rename from flextype/routes/api.php rename to flextype/routes/api/delivery.php