1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-07-01 08:26:36 +02:00
MLEM/Tests/Stub/StubServices.cs

11 lines
186 B
C#
Raw Normal View History

2020-07-31 17:14:25 +02:00
using System;
namespace Tests.Stub {
public class StubServices : IServiceProvider {
public object GetService(Type serviceType) {
return null;
}
}
}