14 lines
347 B
C#
14 lines
347 B
C#
using Core.Settings;
|
|
|
|
namespace Core.Interfaces;
|
|
|
|
public interface IGeneratorDirector<T> where T : ISpecFile
|
|
{
|
|
public Task DotnetServer(T file, DotnetConfig config);
|
|
|
|
public Task DotnetClient(T file, DotnetConfig config);
|
|
|
|
public Task Java(T file, JavaConfig config);
|
|
|
|
public Task Javascript(T file, JavascriptConfig config);
|
|
} |