mirror of
https://github.com/opensupports/opensupports.git
synced 2025-11-01 20:14:24 +01:00
9 lines
158 B
PHP
9 lines
158 B
PHP
<?php
|
|
|
|
class CreateController extends Controller {
|
|
const PATH = '/create';
|
|
|
|
public function handler(){
|
|
Response::respondError('TEST');
|
|
}
|
|
} |