using System;
using UnityEditor.AddressableAssets.Settings;
namespace UnityEditor.AddressableAssets.HostingServices
{
///
/// Interface for providing configuration data for implementations
///
public interface IHostingServiceConfigurationProvider
{
///
/// Returns the Hosting Service content root path for the given
///
string HostingServicesContentRoot { get; }
}
}