blob: ef9dcad8c46bad571fb2d00092b36a67352332fa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "remoteprojectstore.h"
namespace zen {
struct ZenRemoteStoreOptions : RemoteStoreOptions
{
std::string Url;
std::string ProjectId;
std::string OplogId;
};
std::unique_ptr<RemoteProjectStore> CreateZenRemoteStore(const ZenRemoteStoreOptions& Options);
} // namespace zen
|