blob: 31548af22aca135e8f83477b80ff942f59705b05 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "remoteprojectstore.h"
namespace zen {
class AuthMgr;
struct JupiterRemoteStoreOptions : RemoteStoreOptions
{
std::string Url;
std::string Namespace;
std::string Bucket;
IoHash Key;
std::string OpenIdProvider;
std::string AccessToken;
AuthMgr& AuthManager;
bool ForceDisableBlocks;
bool ForceDisableTempBlocks;
};
std::unique_ptr<RemoteProjectStore> CreateJupiterRemoteStore(const JupiterRemoteStoreOptions& Options);
} // namespace zen
|