Go to the documentation of this file.00001
00009 package script.media.xbmc;
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
00020 public class shutdown_library implements RunRiver {
00021
00022 @Override
00023 public BotReply invoke(RiveScript rs, String user, String[] args) {
00024 new Xbmc(rs).shutdownLibrary();
00025
00026 return new BotReply("");
00027 }
00028 }