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