prolab-api/api/OpenApiBootstrapV4.php

24 lines
360 B
PHP
Raw Normal View History

2025-10-04 09:17:18 +00:00
<?php
namespace api;
2025-10-06 02:00:17 +00:00
use OpenApi\Annotations as OA;
2025-10-04 09:17:18 +00:00
2025-10-06 02:00:17 +00:00
/**
* @OA\Info(
* title="HANUMAN PATHOLOGY API",
* version="1.0.0"
* )
* @OA\Server(url="/v1")
*
* @OA\Components(
* @OA\SecurityScheme(
* securityScheme="bearerAuth",
* type="http",
* scheme="bearer",
* bearerFormat="JWT"
* )
* )
*/
2025-10-04 09:17:18 +00:00
final class OpenApiBootstrap {}