10 lines
341 B
C#
10 lines
341 B
C#
using Serilog.Sinks.LogView.Core.Logging;
|
|
using LogDataStore = LogViewer.Avalonia.Logging.LogDataStore;
|
|
|
|
namespace AvaloniaSerilogNoDI.DataStores;
|
|
|
|
// Application-wide shared instance of the LogDataStore logging entries
|
|
public static class MainControlsDataStore
|
|
{
|
|
public static ILogDataStore DataStore { get; } = new LogDataStore();
|
|
} |