# Bryan Schumaker (5 / 15 / 2011) from libsaria import controls def play(): controls.play() return "" def pause(): controls.pause() return "" rpc = { "play.html":(play, "html"), "pause.html":(pause, "html"), } docs = { "RPC":rpc, }