This commit is contained in:
Kevin Pham
2023-12-01 13:10:37 -06:00
parent 9f0e33aa7f
commit 8aba4a18c2
4 changed files with 8 additions and 12 deletions

View File

@@ -10,7 +10,6 @@ import (
func NewOutlineHandler(path string, opts *ProxyOptions) fiber.Handler {
return func(c *fiber.Ctx) error {
return proxychain.
NewProxyChain().
WithAPIPath(path).
@@ -27,6 +26,5 @@ func NewOutlineHandler(path string, opts *ProxyOptions) fiber.Handler {
).
SetFiberCtx(c).
Execute()
}
}