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)
|
||
|
};
|
||
|
}
|