12 lines
339 B
C#
12 lines
339 B
C#
using MoonlightServers.Daemon.Models;
|
|
using MoonlightServers.DaemonShared.Enums;
|
|
|
|
namespace MoonlightServers.Daemon.Extensions.ServerExtensions;
|
|
|
|
public static class ServerMetaExtensions
|
|
{
|
|
public static async Task NotifyTask(this Server server, ServerTask task)
|
|
{
|
|
server.Logger.LogInformation("Task: {task}", task);
|
|
}
|
|
} |