1
0
mirror of synced 2024-07-07 10:30:37 +00:00
Tapeti/Default/DefaultControllerFactory.cs

13 lines
251 B
C#
Raw Normal View History

using System;
namespace Tapeti.Default
{
public class DefaultControllerFactory : IControllerFactory
{
public object CreateController(Type controllerType)
{
throw new NotImplementedException();
}
}
}