sharding/src/ShardingCore/IShardingBootstrapper.cs

16 lines
255 B
C#

using System;
using System.Threading.Tasks;
namespace ShardingCore
{
/*
* @Author: xjm
* @Description:
* @Date: Tuesday, 26 January 2021 12:15:27
* @Email: 326308290@qq.com
*/
public interface IShardingBootstrapper
{
void Start();
}
}