22 lines
431 B
C#
22 lines
431 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PARR.EsppTemplateSync
|
|
{
|
|
internal class TemplateMQSyncer : ITemplateSyncer
|
|
{
|
|
public async Task StartAsync()
|
|
{
|
|
// throw new NotImplementedException();
|
|
}
|
|
|
|
public void Stop()
|
|
{
|
|
//throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|