You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
315 B

using Autofac;
using HybirdFrameworkCore.Autofac;
namespace Service.Car.Server;
public class CarServerMgr
{
public static CarServer? CarServer { get; set; }
public static void InitServer(int port)
{
CarServer = AppInfo.Container.Resolve<CarServer>();
CarServer.Start(port);
}
}