using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Channels; using System.Threading.Tasks; using Microsoft.Extensions.Hosting; namespace Ips.Service.CpuServer { public class InitService : BackgroundService { protected override async Task ExecuteAsync(CancellationToken stoppingToken) { await Task.FromResult(true); } } }