aboutsummaryrefslogtreecommitdiff
path: root/src/Emby.Server/PowerManagement.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Emby.Server/PowerManagement.cs')
-rw-r--r--src/Emby.Server/PowerManagement.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Emby.Server/PowerManagement.cs b/src/Emby.Server/PowerManagement.cs
new file mode 100644
index 000000000..85e3b72a6
--- /dev/null
+++ b/src/Emby.Server/PowerManagement.cs
@@ -0,0 +1,15 @@
+using MediaBrowser.Model.System;
+
+namespace Emby.Server
+{
+ public class PowerManagement : IPowerManagement
+ {
+ public void PreventSystemStandby()
+ {
+ }
+
+ public void AllowSystemStandby()
+ {
+ }
+ }
+}