mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-09 00:02:50 -04:00
15 lines
229 B
Plaintext
15 lines
229 B
Plaintext
module HTTPX::Transcoder
|
|
module JSON
|
|
def self?.encode: (_ToJson json) -> Encoder
|
|
|
|
class Encoder
|
|
include _Encoder
|
|
include _ToS
|
|
|
|
private
|
|
|
|
def initalize: (_ToJson json) -> untyped
|
|
end
|
|
end
|
|
end
|