using System.Collections.Generic; using System.Threading.Tasks; using Plugins.Countly.Helpers; using UnityEngine; namespace Plugins.Countly.Services.Impls.Wrapper { public class RemoteConfigCountlyServiceWrapper : IRemoteConfigCountlyService { public Dictionary Configs { get; } public Task InitConfig() { Debug.Log("[RemoteConfigCountlyServiceWrapper] InitConfig"); return Task.FromResult(new CountlyResponse()); } } }