jellyfin/src/Emby.Server/PowerManagement.cs

16 lines
252 B
C#
Raw Normal View History

2016-11-13 05:33:51 +01:00
using MediaBrowser.Model.System;
namespace Emby.Server
{
public class PowerManagement : IPowerManagement
{
public void PreventSystemStandby()
{
}
public void AllowSystemStandby()
{
}
}
}