Go to the documentation of this file.00001
00009 package script.media.youtube;
00010
00011 import com.rosalfred.core.ia.RosRiveScript;
00012 import com.rosalfred.core.ia.rivescript.BotReply;
00013 import com.rosalfred.core.ia.rivescript.RiveScript;
00014 import com.rosalfred.core.ia.rivescript.lang.java.RunRiver;
00015
00022 public class search_youtube implements RunRiver {
00023
00024 @Override
00025 public BotReply invoke(RiveScript rs, String user, String[] args) {
00026 return new Youtube((RosRiveScript)rs).search();
00027 }
00028 }