27 lines
540 B
Ruby

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
module VagrantPlugins
module CommandServe
class Client
class Push < Client
# Generate callback and spec for required arguments
#
# @return [SDK::FuncSpec, Proc]
def push_func
spec = client.push_spec(Empty.new)
cb = proc do |args|
client.push(args)
end
[spec, cb]
end
# Execute push
def push
run_func
end
end
end
end
end