mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 23:23:15 +08:00
15 lines
405 B
C#
15 lines
405 B
C#
|
|
using Bit.Core.Billing.Commands;
|
|||
|
|
using Bit.Core.Billing.Commands.Implementations;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Billing.Extensions;
|
|||
|
|
|
|||
|
|
using Microsoft.Extensions.DependencyInjection;
|
|||
|
|
|
|||
|
|
public static class ServiceCollectionExtensions
|
|||
|
|
{
|
|||
|
|
public static void AddBillingCommands(this IServiceCollection services)
|
|||
|
|
{
|
|||
|
|
services.AddSingleton<IRemovePaymentMethodCommand, RemovePaymentMethodCommand>();
|
|||
|
|
}
|
|||
|
|
}
|