mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 08:15:53 +01:00
18 lines
368 B
ObjectPascal
18 lines
368 B
ObjectPascal
|
program SampleApi;
|
||
|
|
||
|
uses
|
||
|
System.StartUpCopy,
|
||
|
FMX.Forms,
|
||
|
Sample.Main in 'Sample.Main.pas' {Form1},
|
||
|
mvccontroller in 'mvccontroller.pas',
|
||
|
Sample.SwagDoc.DelphiMVCFramework in 'Sample.SwagDoc.DelphiMVCFramework.pas',
|
||
|
DelphiUnit in 'DelphiUnit.pas';
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
begin
|
||
|
Application.Initialize;
|
||
|
Application.CreateForm(TForm1, Form1);
|
||
|
Application.Run;
|
||
|
end.
|