aboutsummaryrefslogtreecommitdiff
path: root/Emby.IsoMounting/IsoMounter/Plugin.cs
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2019-08-31 21:22:41 -0400
committerGitHub <noreply@github.com>2019-08-31 21:22:41 -0400
commitba06ef57a9b265608cc9cdd8e681fed7d2231d4d (patch)
tree056d111ed02db8bbfc044b4b5497d04d9b53def8 /Emby.IsoMounting/IsoMounter/Plugin.cs
parent0d7adc33828975559664729cc3c4009503f782de (diff)
parent14fbd845c21a2b4eebad7dd2f0e0ef502bed28eb (diff)
Merge pull request #1687 from Bond-009/isomounter
Move IsoMounter to plugin
Diffstat (limited to 'Emby.IsoMounting/IsoMounter/Plugin.cs')
-rw-r--r--Emby.IsoMounting/IsoMounter/Plugin.cs33
1 files changed, 0 insertions, 33 deletions
diff --git a/Emby.IsoMounting/IsoMounter/Plugin.cs b/Emby.IsoMounting/IsoMounter/Plugin.cs
deleted file mode 100644
index 433294d74..000000000
--- a/Emby.IsoMounting/IsoMounter/Plugin.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-using System;
-using IsoMounter.Configuration;
-using MediaBrowser.Common.Configuration;
-using MediaBrowser.Common.Plugins;
-using MediaBrowser.Model.Serialization;
-
-namespace IsoMounter
-{
- /// <summary>
- /// The LinuxMount plugin class.
- /// </summary>
- public class Plugin : BasePlugin<PluginConfiguration>
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="Plugin" /> class.
- /// </summary>
- /// <param name="applicationPaths">The application paths.</param>
- /// <param name="xmlSerializer">The XML serializer.</param>
- public Plugin(IApplicationPaths applicationPaths, IXmlSerializer xmlSerializer)
- : base(applicationPaths, xmlSerializer)
- {
- }
-
- /// <inheritdoc />
- public override Guid Id { get; } = new Guid("4682DD4C-A675-4F1B-8E7C-79ADF137A8F8");
-
- /// <inheritdoc />
- public override string Name => "Iso Mounter";
-
- /// <inheritdoc />
- public override string Description => "Mount and stream ISO contents";
- }
-}