You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
519 B
C#
21 lines
519 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using TouchSocket.Sockets;
|
|
|
|
namespace SlnMesnac.TouchSocket
|
|
{
|
|
/// <summary>
|
|
/// 注册服务
|
|
/// </summary>
|
|
public static class TouchSocketSetup
|
|
{
|
|
public static void AddTouchSocketSetup(this IServiceCollection services)
|
|
{
|
|
services.AddSingleton<TcpService>();//注册TouchSocket的服务
|
|
services.AddSingleton<TcpServer>();
|
|
}
|
|
}
|
|
}
|