2024-02-02 17:14:41 +08:00
|
|
|
|
namespace MesETL.App.HostedServices.Abstractions;
|
2024-01-04 09:00:44 +08:00
|
|
|
|
|
|
|
|
|
public interface ITransformService
|
|
|
|
|
{
|
2024-01-29 09:29:16 +08:00
|
|
|
|
public Task ExecuteAsync(CancellationToken cancellationToken);
|
2024-01-04 09:00:44 +08:00
|
|
|
|
}
|