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