mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
11 lines
206 B
C#
11 lines
206 B
C#
using Nancy.Bootstrapper;
|
|
|
|
namespace NzbDrone.Api.Extensions.Pipelines
|
|
{
|
|
public interface IRegisterNancyPipeline
|
|
{
|
|
int Order { get; }
|
|
|
|
void Register(IPipelines pipelines);
|
|
}
|
|
} |