mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-04 14:39:10 +01:00
11 lines
186 B
C#
11 lines
186 B
C#
|
using System;
|
||
|
|
||
|
namespace Tests.Stub {
|
||
|
public class StubServices : IServiceProvider {
|
||
|
|
||
|
public object GetService(Type serviceType) {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|