mirror of
https://github.com/TeamNewPipe/NewPipeExtractor.git
synced 2024-12-13 05:40:34 +05:30
14 lines
278 B
Java
14 lines
278 B
Java
package org.schabi.newpipe.extractor;
|
|
|
|
import org.schabi.newpipe.extractor.services.youtube.YoutubeService;
|
|
|
|
/**
|
|
* Created by the-scrabi on 18.02.17.
|
|
*/
|
|
|
|
class ServiceList {
|
|
public static final StreamingService[] serviceList = {
|
|
new YoutubeService(0)
|
|
};
|
|
}
|