More product setup

This commit is contained in:
2025-04-01 23:52:37 -04:00
parent 636deeb2c0
commit 05afb855be
20 changed files with 295 additions and 48 deletions

17
AobaCore/Extensions.cs Normal file
View File

@@ -0,0 +1,17 @@
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AobaCore;
public static class Extensions
{
public static IServiceCollection AddAoba(this IServiceCollection services)
{
services.AddSingleton<AobaService>();
return services;
}
}