mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-06 00:02:08 -04:00
17 lines
249 B
Plaintext
17 lines
249 B
Plaintext
module HTTPX
|
|
module Resolver
|
|
class System
|
|
include ResolverMixin
|
|
|
|
def closed?: () -> true
|
|
|
|
def empty?: () -> true
|
|
|
|
def <<: (Connection) -> void
|
|
|
|
private
|
|
|
|
def initialize: (options) -> untyped
|
|
end
|
|
end
|
|
end |