microphp/Core/Core.php

8 lines
240 B
PHP
Raw Normal View History

2023-04-02 10:00:20 +03:00
<?php
include_once "Request.php";
include_once "Response.php";
include_once "Session.php";
define("request", new Request(), false);
define("response", new Response(), false);
define("session", new Session(), false);