Skip to content

Instantly share code, notes, and snippets.

@ntakouris
Created July 18, 2019 08:44
Show Gist options
  • Save ntakouris/3f52f9e70c1cab1180c6ce0564e4437f to your computer and use it in GitHub Desktop.
Save ntakouris/3f52f9e70c1cab1180c6ce0564e4437f to your computer and use it in GitHub Desktop.
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
namespace Tweetbook.Installers
{
public interface IInstaller
{
void InstallServices(IServiceCollection services, IConfiguration configuration);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment