code cleanup (#743)

* update tools

* run code cleanup

* update dependencies
This commit is contained in:
Jason Dove
2022-04-19 17:47:18 -05:00
committed by GitHub
parent e250e93a8e
commit c02b83d0d6
1223 changed files with 5487 additions and 5547 deletions
@@ -11,4 +11,4 @@ public interface IPlexMovieLibraryScanner
PlexLibrary library,
string ffmpegPath,
string ffprobePath);
}
}
@@ -6,4 +6,4 @@ public interface IPlexPathReplacementService
{
Task<string> GetReplacementPlexPath(int libraryPathId, string path);
string GetReplacementPlexPath(List<PlexPathReplacement> pathReplacements, string path, bool log = true);
}
}
@@ -10,4 +10,4 @@ public interface IPlexSecretStore
Task<Option<PlexServerAuthToken>> GetServerAuthToken(string clientIdentifier);
Task<Unit> UpsertServerAuthToken(PlexServerAuthToken serverAuthToken);
Task<Unit> DeleteAll();
}
}
@@ -8,7 +8,7 @@ public interface IPlexServerApiClient
Task<bool> Ping(
PlexConnection connection,
PlexServerAuthToken token);
Task<Either<BaseError, List<PlexLibrary>>> GetLibraries(
PlexConnection connection,
PlexServerAuthToken token);
@@ -58,4 +58,4 @@ public interface IPlexServerApiClient
string key,
PlexConnection connection,
PlexServerAuthToken token);
}
}
@@ -11,4 +11,4 @@ public interface IPlexTelevisionLibraryScanner
PlexLibrary library,
string ffmpegPath,
string ffprobePath);
}
}
@@ -8,4 +8,4 @@ public interface IPlexTvApiClient
Task<Either<BaseError, PlexAuthPin>> StartPinFlow();
Task<bool> TryCompletePinFlow(PlexAuthPin authPin);
Task<Either<BaseError, List<PlexMediaSource>>> GetServers();
}
}