@page "/ProxyKMS" @using Web.Operation.Packet @using Web.Operation.Module @inject ConfigService _configService

ProxyKMS











@code { public string ApiAddress { get; set; } protected override async Task OnInitializedAsync() { var findApi = _configService.GetConfig().Api.Find(x => x.Id == 2); if(findApi is not null) { ApiAddress = findApi.Host; } } }