mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-06 05:17:37 +03:00
Add basic clash api
This commit is contained in:
parent
c7fabe40ed
commit
c5b3e8b042
36 changed files with 1498 additions and 41 deletions
17
experimental/clashapi/common.go
Normal file
17
experimental/clashapi/common.go
Normal file
|
@ -0,0 +1,17 @@
|
|||
package clashapi
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"net/url"
|
||||
|
||||
"github.com/go-chi/chi/v5"
|
||||
)
|
||||
|
||||
// When name is composed of a partial escape string, Golang does not unescape it
|
||||
func getEscapeParam(r *http.Request, paramName string) string {
|
||||
param := chi.URLParam(r, paramName)
|
||||
if newParam, err := url.PathUnescape(param); err == nil {
|
||||
param = newParam
|
||||
}
|
||||
return param
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue