9 lines
191 B
C#
9 lines
191 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Unity.Services.Core.Configuration
|
|
{
|
|
interface IConfigurationLoader
|
|
{
|
|
Task<SerializableProjectConfiguration> GetConfigAsync();
|
|
}
|
|
}
|