sapling/eden/fs/inodes/win/RepoConfig.h
Puneet Kaushik db5d20b303 Move Windows EdenMount and RepoConfig to fs/inodes/win
Summary: Moving these two files to integrate them better with rest of the Inodes code.

Reviewed By: simpkins

Differential Revision: D19956267

fbshipit-source-id: 5bf8165a6dc70a0c03f71f3f73b383991f21eb56
2020-03-10 12:27:50 -07:00

24 lines
508 B
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#pragma once
#include <string>
#include "eden/fs/utils/PathFuncs.h"
namespace facebook {
namespace eden {
void createRepoConfig(
const AbsolutePath& repoPath,
const AbsolutePath& socket,
const AbsolutePath& client);
std::string getMountId(const std::string& repoPath);
} // namespace eden
} // namespace facebook