27522c1e1c
- Theming adjustments (still needs a lot of work)
16 lines
422 B
C#
16 lines
422 B
C#
using DeepDrftWeb.Client.Clients;
|
|
using DeepDrftWeb.Client.ViewModels;
|
|
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
|
using NetBlocks.Models;
|
|
|
|
namespace DeepDrftWeb.Client;
|
|
|
|
public static class Startup
|
|
{
|
|
public static void ConfigureDomainServices(IServiceCollection services)
|
|
{
|
|
// Track Client
|
|
services.AddScoped<TrackClient>();
|
|
services.AddScoped<TracksViewModel>();
|
|
}
|
|
} |