mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 21:51:23 +08:00
9eb98e399d
Co-authored-by: goomada <madao@DESKTOP-IOEBS0C.localdomain>
10 lines
144 B
Go
10 lines
144 B
Go
package obfs
|
|
|
|
func init() {
|
|
register("http_post", newHTTPPost, 0)
|
|
}
|
|
|
|
func newHTTPPost(b *Base) Obfs {
|
|
return &httpObfs{Base: b, post: true}
|
|
}
|