6 lines
103 B
PHP
6 lines
103 B
PHP
|
<?php
|
||
|
include_once __DIR__ . '/src/handlers/Actor.php';
|
||
|
|
||
|
$actor = new Actor();
|
||
|
$actor->handleAction();
|