1
0
mirror of synced 2024-07-04 17:30:36 +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();
}
}
}