11 lines
260 B
PHP
11 lines
260 B
PHP
<?php
|
|
namespace Oatmeal;
|
|
|
|
use Index\Http\Routing\{HttpGet,RouteHandler};
|
|
|
|
final class ClientCredsRoutes extends RouteHandler {
|
|
#[HttpGet('/client_credentials')]
|
|
public function getIndex(): string {
|
|
return 'client creds routes go here';
|
|
}
|
|
}
|