Skip to content

Instantly share code, notes, and snippets.

@haraldfianbakken
Created March 8, 2013 08:57
Show Gist options
  • Save haraldfianbakken/5115121 to your computer and use it in GitHub Desktop.
Save haraldfianbakken/5115121 to your computer and use it in GitHub Desktop.
IBuddyCommands (REST)
using System.Web.Mvc;
namespace SharePirates.BuddyWeb.Controllers
{
public interface IBuddyCommands
{
ActionResult Flash(string color);
ActionResult Twist();
ActionResult HeartBeat(int ms=-1);
ActionResult HeadColor(string color);
ActionResult InvertHeart();
ActionResult HeartColor(string color);
ActionResult Wag();
ActionResult Flap();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment