9 lines
192 B
C#
9 lines
192 B
C#
using Serilog;
|
|
|
|
namespace JSMR.Api.Startup;
|
|
|
|
public static class HostBuilderExtensions
|
|
{
|
|
public static IHostBuilder UseAppSerilog(this IHostBuilder host)
|
|
=> host.UseSerilog();
|
|
} |