Skip to content

Instantly share code, notes, and snippets.

@SteveSyfuhs
Created August 22, 2017 01:30
Show Gist options
  • Save SteveSyfuhs/30f95fa758ee933756462ce0c7775c6a to your computer and use it in GitHub Desktop.
Save SteveSyfuhs/30f95fa758ee933756462ce0c7775c6a to your computer and use it in GitHub Desktop.
Startup
public class MyStartup : IStartupTransform
{
public void Transform(IServiceCollection services)
{
services.AddScoped<IKeyStorageService, MyStorageService>();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment