mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-08 12:36:52 +03:00
15 lines
237 B
ObjectPascal
15 lines
237 B
ObjectPascal
program Gasmeter_Logdownloader;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
uMain in 'uMain.pas' {Form1};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|