namespace Meezi.Core.Interfaces; public interface IPlatformRuntimeConfig { Task GetAsync(string key, CancellationToken cancellationToken = default); Task> GetByPrefixAsync(string prefix, CancellationToken cancellationToken = default); void InvalidateCache(); }