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