mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 21:51:23 +08:00
10 lines
141 B
Go
10 lines
141 B
Go
|
package obfs
|
||
|
|
||
|
func init() {
|
||
|
register("http_post", newHTTPPost)
|
||
|
}
|
||
|
|
||
|
func newHTTPPost(b *Base) Obfs {
|
||
|
return &httpObfs{Base: b, post: true}
|
||
|
}
|