Skip to content

Instantly share code, notes, and snippets.

@TBertuzzi
Created November 28, 2019 14:03
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 TBertuzzi/a5e76beb6a3769f82b57a006bb3cdd73 to your computer and use it in GitHub Desktop.
Save TBertuzzi/a5e76beb6a3769f82b57a006bb3cdd73 to your computer and use it in GitHub Desktop.
Shiny
using System;
using ExemploShiny.Delegates;
using Microsoft.Extensions.DependencyInjection;
using Shiny;
namespace ExemploShiny
{
public class Startup : ShinyStartup
{
public override void ConfigureServices(IServiceCollection services)
{
services.UseGps<LocationDelegates>();
services.UseMotionActivity();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment