From 61465131ae3859fd08ffb2120171075e8cda6ce5 Mon Sep 17 00:00:00 2001 From: Sky Johnson Date: Wed, 17 Jul 2024 22:13:07 -0500 Subject: [PATCH] Fix boot location in index --- public/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/index.php b/public/index.php index 7c3b8da..5129564 100644 --- a/public/index.php +++ b/public/index.php @@ -4,7 +4,7 @@ // define our server path and bootstrap the request const SERVER = '../server'; -require_once SERVER.'/bootstrap.php'; +require_once SERVER.'/bootstrap/Boot.php'; // spin up our app container and the initial route $app = new App(new Database(DB), new Request(), new Auth());