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.
|
using Autofac;
|
|
using HybirdFrameworkCore.Autofac;
|
|
|
|
namespace Service.Car.Server;
|
|
|
|
public class CarServerMgr
|
|
{
|
|
public static CarServer? CarServer { get; set; }
|
|
|
|
public static void InitServer()
|
|
{
|
|
CarServer = AppInfo.Container.Resolve<CarServer>();
|
|
CarServer.Start(5588);
|
|
}
|
|
} |