// ========================================================================== // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex UG (haftungsbeschraenkt) // All rights reserved. Licensed under the MIT license. // ========================================================================== using System; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Squidex.Infrastructure.Plugins; namespace Squidex.SamplePlugin { public sealed class SamplePlugin : IPlugin { public void ConfigureServices(IServiceCollection services, IConfiguration config) { throw new NotImplementedException(); } } }