aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Mac/Native/PowerManagement.cs
blob: f3c97d65825150a8e0ee2f99d657c008bd7f6efb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using MediaBrowser.Model.System;

namespace Emby.Server.Mac.Native
{
    public class PowerManagement : IPowerManagement
    {
        public void PreventSystemStandby()
        {
        }

        public void AllowSystemStandby()
        {
        }
    }
}