program metadata_browser;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, umain, metadata_service_proxy,
metadata_service;
begin
Application.Initialize;
Application.CreateForm(TfMain, fMain);
Application.Run;
end.