New: Bump Version to V3 to please the masses

This commit is contained in:
Qstick
2019-12-02 20:36:18 -05:00
parent 29011cac5e
commit 0aa8ac5d39
149 changed files with 212 additions and 214 deletions
+12
View File
@@ -0,0 +1,12 @@
using Radarr.Http;
namespace Radarr.Api.V3
{
public abstract class RadarrV3Module : RadarrModule
{
protected RadarrV3Module(string resource)
: base("/api/v3/" + resource.Trim('/'))
{
}
}
}