ocarina/libsaria/server/pages/rpc.py

21 lines
244 B
Python
Raw Normal View History

# 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,
}