Files
Gangs/GangsImpl/Mock/MemoryImpl.cs
2024-08-31 04:46:15 -07:00

11 lines
299 B
C#

using GangsAPI.Extensions;
using GangsAPI.Services;
using Microsoft.Extensions.DependencyInjection;
namespace Mock;
public static class MemoryImpl {
public static void AddMemoryImpl(this IServiceCollection collection) {
collection.AddPluginBehavior<IStatManager, MockStatManager>();
}
}