blob: 078f50ca0a33c65b1623d40847ee02642820defe [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package io.v.syncslides.discovery;
class RpcClientFactory implements ClientFactory {
@Override
public LivePresentationClient make(String name) {
return LivePresentationClientFactory.getLivePresentationClient(name);
}
}