forked from loafle/openapi-generator-original
25 lines
537 B
C++
25 lines
537 B
C++
/**
|
|
* OpenAPI Petstore
|
|
* This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters.
|
|
*
|
|
* OpenAPI spec version: 1.0.0
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator
|
|
* https://github.com/OpenAPITools/openapi-generator
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
#include "OpenAPIModule.h"
|
|
|
|
IMPLEMENT_MODULE(OpenAPIModule, OpenAPI);
|
|
DEFINE_LOG_CATEGORY(LogOpenAPI);
|
|
|
|
void OpenAPIModule::StartupModule()
|
|
{
|
|
}
|
|
|
|
void OpenAPIModule::ShutdownModule()
|
|
{
|
|
}
|