/* * This file is part of the CatLib package. * * (c) CatLib * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * Document: http://catlib.io/ */ namespace CatLib { /// /// 框架默认的服务提供者 /// 这里的提供者在框架启动时必定会被加载 /// internal class Providers { /// /// 服务提供者 /// public static IServiceProvider[] ServiceProviders { get { return new IServiceProvider[] { }; } } } }