/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Utils/Cloud/Detector/GenericCloudDetector.cs
19 строк
457 B
Yair
Code Quality: Ran code cleanup (#17307)
25 июл 2025, 03:57
Не верифицирован
25 июл 2025, 03:57
4558bc2
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. namespace Files.App.Utils.Cloud { /// <summary> /// Provides an utility for generic cloud detection. /// </summary> public sealed class GenericCloudDetector : AbstractCloudDetector { protected override async IAsyncEnumerable<ICloudProvider> GetProviders() { foreach (var provider in await CloudDrivesDetector.DetectCloudDrives()) { yield return provider; } } } }