mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-30 05:20:52 +00:00
14 lines
286 B
PHP
14 lines
286 B
PHP
<?php
|
|
// load models defined for endpoints
|
|
foreach (glob(dirname(__FILE__)."/lib/models/*.php") as $filename)
|
|
{
|
|
require_once $filename;
|
|
}
|
|
|
|
// load classes for accessing the endpoints
|
|
foreach (glob(dirname(__FILE__)."/lib/*.php") as $filename)
|
|
{
|
|
require_once $filename;
|
|
}
|
|
?>
|