mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
18 lines
447 B
ObjectPascal
18 lines
447 B
ObjectPascal
|
program UsingServerInDLL;
|
||
|
|
||
|
uses
|
||
|
Vcl.Forms,
|
||
|
MainFormU in 'MainFormU.pas' {MainForm},
|
||
|
REST.RestServer in '..\REST\REST.RestServer.pas',
|
||
|
REST.WebModule in '..\REST\REST.WebModule.pas' {MainWebModule: TWebModule},
|
||
|
REST.MainController in '..\REST\CONTROLLERS\REST.MainController.pas';
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
begin
|
||
|
Application.Initialize;
|
||
|
Application.MainFormOnTaskbar := True;
|
||
|
Application.CreateForm(TMainForm, MainForm);
|
||
|
Application.Run;
|
||
|
end.
|