chore: initialize standalone UPM package
Publish UPM package / publish (push) Failing after 1s

This commit is contained in:
2026-08-26 02:50:34 +08:00
commit 8eaaa3040a
139 changed files with 9309 additions and 0 deletions
@@ -0,0 +1,13 @@
using Cysharp.Threading.Tasks;
using ShrinkNetwork;
namespace ShrinkNetwork.ServerHost.Framework;
public interface IShrinkServerModule
{
string Name { get; }
void ConfigureService(ServerModuleContext context, ShrinkNetworkService service, string transportName);
UniTask StartAsync(ServerModuleContext context, CancellationToken cancellationToken);
}