Mark class as abstract so we don't instantiate or inject it by accident
This commit is contained in:
parent
8523ddd60f
commit
0e56d778bc
|
|
@ -9,7 +9,7 @@ using Microsoft.Extensions.Logging;
|
||||||
|
|
||||||
namespace AS1024.GeoFeed.Core.GeoFeedProviders
|
namespace AS1024.GeoFeed.Core.GeoFeedProviders
|
||||||
{
|
{
|
||||||
public class NetBoxGeoFeedProviderBase : IGeoFeedProvider
|
public abstract class NetBoxGeoFeedProviderBase : IGeoFeedProvider
|
||||||
{
|
{
|
||||||
protected readonly IConfiguration configuration;
|
protected readonly IConfiguration configuration;
|
||||||
protected readonly ILogger<NetBoxGeoFeedProvider> logger;
|
protected readonly ILogger<NetBoxGeoFeedProvider> logger;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue