15 lines
332 B
C#
15 lines
332 B
C#
|
namespace PatMe2Mqtt
|
|||
|
{
|
|||
|
public sealed class SyncCmd : Cmd
|
|||
|
{
|
|||
|
public override string Name => "patme2mqtt";
|
|||
|
|
|||
|
public override string HelpMessage => "Manually pushes the PatMe stats to MQTT.";
|
|||
|
|
|||
|
public override void Run(string arguments)
|
|||
|
{
|
|||
|
Service.Plugin.SyncAll();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|