1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-19 07:31:22 +02:00
MLEM/Tests/Stub/StubServices.cs

11 lines
186 B
C#
Raw Normal View History

2021-03-18 17:28:08 +01:00
using System;
namespace Tests.Stub {
public class StubServices : IServiceProvider {
public object GetService(Type serviceType) {
return null;
}
}
}