Skip to content

Instantly share code, notes, and snippets.

@fabriciosanchez
Created May 26, 2014 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabriciosanchez/daedf2fbbe0456dd1dcd to your computer and use it in GitHub Desktop.
Save fabriciosanchez/daedf2fbbe0456dd1dcd to your computer and use it in GitHub Desktop.
Startup Class
public class Startup
{
public void Configuration(IAppBuilder app)
{
var config = new HttpConfiguration();
config.Routes.MapHttpRoute("default", "{controller}");
app.UseWebApi(config);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment