Files

25 lines
882 B
C#
Raw Permalink Normal View History

2024-11-28 13:36:05 +08:00
using Infrastructure.Helper;
using JinianNet.JNTemplate;
using Microsoft.Extensions.DependencyInjection;
using System;
namespace Infrastructure
{
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();
var url = AppSettings.GetConfig("urls");
Console.WriteLine(content);
Console.ForegroundColor = ConsoleColor.Blue;
2024-12-03 09:25:16 +08:00
2024-12-03 14:55:14 +08:00
Console.WriteLine("苏州道安自动化网址http://www.doan-tech.com");
2024-11-28 13:36:05 +08:00
Console.WriteLine($"Swagger地址{url}/swagger/index.html");
Console.WriteLine($"初始化种子数据地址:{url}/common/InitSeedData");
}
}
}