9 lines
144 B
Ruby
9 lines
144 B
Ruby
|
|
# Outbound HTTP client for the sync endpoint.
|
||
|
|
class Api
|
||
|
|
def initialize(base_url)
|
||
|
|
@base_url = base_url
|
||
|
|
end
|
||
|
|
|
||
|
|
def push(payload); end
|
||
|
|
end
|