2017-03-01 17:47:52 +00:00
|
|
|
package org.schabi.newpipe.extractor;
|
|
|
|
|
|
|
|
import org.schabi.newpipe.extractor.services.youtube.YoutubeService;
|
|
|
|
|
2017-06-29 18:12:55 +00:00
|
|
|
/*
|
2017-03-01 17:47:52 +00:00
|
|
|
* Created by the-scrabi on 18.02.17.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class ServiceList {
|
|
|
|
public static final StreamingService[] serviceList = {
|
|
|
|
new YoutubeService(0)
|
|
|
|
};
|
|
|
|
}
|