We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c4379b commit 05a599dCopy full SHA for 05a599d
1 file changed
README.md
@@ -6,7 +6,7 @@ Sample Horse server validate basic authentication:
6
7
```delphi
8
uses
9
- Horse, Horse.BasicAuthentication;
+ Horse, Horse.BasicAuthentication, System.SysUtils;
10
11
var
12
App: THorse;
@@ -23,7 +23,7 @@ begin
23
App.Post('ping',
24
procedure(Req: THorseRequest; Res: THorseResponse; Next: TProc)
25
begin
26
- Req.Send('pong');
+ Res.Send('pong');
27
end);
28
29
App.Start;
0 commit comments