Skip to content

Instantly share code, notes, and snippets.

@hvitorino
Created March 12, 2012 23:27
Show Gist options
  • Select an option

  • Save hvitorino/2025395 to your computer and use it in GitHub Desktop.

Select an option

Save hvitorino/2025395 to your computer and use it in GitHub Desktop.
controller nancy
public class Servicos : NancyModule
{
public Servicos()
{
Get[ "/servicos" ] = parms => Response.AsJson(new List<object>
{
new { id = 1, nome = "Desenvolvimento" },
new { id = 2, nome = "Consultoria" }
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment