Skip to content

Commit 65b9eaa

Browse files
committed
feat: updated interop for new listener
1 parent c233dcb commit 65b9eaa

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/SharpWebserver/Interop/IScriptPage.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@ it under the terms of the GNU General Public License as published by
77
(at your option) any later version.
88
*/
99

10-
using System.Collections.Generic;
11-
using SharpWebserver.Clients;
10+
using System.Net;
1211

1312
namespace SharpWebserver.Interop;
1413
public interface IScriptPage
1514
{
16-
public byte[] CreatePage(ConnectedClient client, Dictionary<string, string> arguments);
15+
public byte[] CreatePage(HttpListenerRequest request);
1716
}

0 commit comments

Comments
 (0)