11 lines
227 B
C#
11 lines
227 B
C#
namespace ReswCodeGen.Core
|
|
{
|
|
public class CodeGeneratorFactory
|
|
{
|
|
public ICodeGenerator Create(string defaultNamespace, string inputFileContents)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|