using Lagrange.OneBot.Utility; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; namespace Lagrange.OneBot.Extensions; public static class HostExtension { public static T InitializeMusicSigner(this T host) where T : IHost { host.Services.GetRequiredService(); return host; } }