mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-15 15:55:54 +01:00
26 lines
720 B
ObjectPascal
26 lines
720 B
ObjectPascal
program SwaggerDocApi;
|
|
{$APPTYPE GUI}
|
|
|
|
uses
|
|
// FastMM4,
|
|
Vcl.Forms,
|
|
Web.WebReq,
|
|
IdHTTPWebBrokerBridge,
|
|
MainFormU in 'MainFormU.pas' {MainForm},
|
|
WebModuleMainU in 'WebModuleMainU.pas' {WebModule1: TWebModule},
|
|
MyController1U in 'MyController1U.pas',
|
|
MyController2U in 'MyController2U.pas',
|
|
MVCFramework.Middleware.Swagger in '..\..\sources\MVCFramework.Middleware.Swagger.pas',
|
|
MVCFramework.Swagger.Commons in '..\..\sources\MVCFramework.Swagger.Commons.pas',
|
|
AuthHandler in 'AuthHandler.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
if WebRequestHandler <> nil then
|
|
WebRequestHandler.WebModuleClass := WebModuleClass;
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.Run;
|
|
end.
|