-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathServer.dpr
More file actions
29 lines (26 loc) · 900 Bytes
/
Server.dpr
File metadata and controls
29 lines (26 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
program Server;
uses
Vcl.Forms,
Unit1 in 'Unit1.pas' {Form1},
RestServer in 'RestServer.pas',
CommandRegistry in 'CommandRegistry.pas',
Commands in 'Commands.pas',
Session in 'Session.pas',
HttpServerCommand in 'HttpServerCommand.pas',
ResourceProcessing in 'ResourceProcessing.pas',
Sessions in 'Sessions.pas',
JsonAttributeSource in 'JsonAttributeSource.pas',
Commands.PostElement in 'Commands.PostElement.pas',
Commands.PostElements in 'Commands.PostElements.pas',
Commands.ClickElement in 'Commands.ClickElement.pas',
Utils in 'Utils.pas',
Commands.PostElementElementsCommand in 'Commands.PostElementElementsCommand.pas',
Commands.GetText in 'Commands.GetText.pas',
Commands.GetRect in 'Commands.GetRect.pas';
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.