Skip to content

Instantly share code, notes, and snippets.

@ufukhawk
Created April 20, 2020 15:18
Show Gist options
  • Save ufukhawk/4dbabd791ef7532f417733821004097b to your computer and use it in GitHub Desktop.
Save ufukhawk/4dbabd791ef7532f417733821004097b to your computer and use it in GitHub Desktop.
using Microsoft.Extensions.DependencyInjection;
using Shiny;
namespace BluetoothPrintSample
{
public class ShinyAppStartup : Shiny.ShinyStartup
{
public override void ConfigureServices(IServiceCollection services)
{
services.UseBleCentral();
services.UseBlePeripherals();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment