using JinianNet.JNTemplate; using ZR.Common; namespace ZR.Admin.WebApi.Extensions { public static class LogoExtension { public static void AddLogo(this IServiceCollection services) { Console.ForegroundColor = ConsoleColor.Blue; var contentTpl = JnHelper.ReadTemplate("", "logo.txt"); var content = contentTpl?.Render(); Console.WriteLine(content); Console.ForegroundColor = ConsoleColor.Blue; } } }