mirror of
https://github.com/sctn4elk/CustomerRewardsRESTAPI.git
synced 2025-01-09 23:14:29 -06:00
18 lines
714 B
PHP
18 lines
714 B
PHP
<?php
|
|
|
|
/*
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Scripting/EmptyPHP.php to edit this template
|
|
*/
|
|
|
|
define("PROJECT_ROOT_PATH", __DIR__ . "/../");
|
|
// include main configuration file
|
|
require_once PROJECT_ROOT_PATH . "/include/config.php";
|
|
// include the base controller file
|
|
require_once PROJECT_ROOT_PATH . "/Controller/Api/BaseController.php";
|
|
// include the use model file
|
|
require_once PROJECT_ROOT_PATH . "/Model/CustomerModel.php";
|
|
require_once PROJECT_ROOT_PATH . "/Model/ImageModel.php";
|
|
// include the tests autoloader when in development
|
|
//require_once __DIR__ . '/../vendor/autoload.php';
|