InitService.cs 431 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Channels;
  6. using System.Threading.Tasks;
  7. using Microsoft.Extensions.Hosting;
  8. namespace Ips.Service.CpuServer
  9. {
  10. public class InitService : BackgroundService
  11. {
  12. protected override async Task ExecuteAsync(CancellationToken stoppingToken)
  13. {
  14. await Task.FromResult(true);
  15. }
  16. }
  17. }