lazarus/components/sqldbrest/editor/schemaeditor.lpr
2024-09-23 14:10:40 +02:00

23 lines
459 B
ObjectPascal

program schemaeditor;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, frmMain, schemaeditorconf, schemaconns;
{$R *.res}
begin
SchemaSettings.LoadFromFile(TSchemaSettings.DefaultFileName);
RequireDerivedFormResource:=True;
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.