Created
April 20, 2020 15:18
-
-
Save ufukhawk/4dbabd791ef7532f417733821004097b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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