RaspberryIO_26/Unosquare.RaspberryIO.Abstractions/IBootstrap.cs
2019-12-04 18:57:18 +01:00

14 lines
355 B
C#

namespace Unosquare.RaspberryIO.Abstractions
{
/// <summary>
/// Interface for bootstrapping an <see cref="Abstractions"/> implementation.
/// </summary>
public interface IBootstrap
{
/// <summary>
/// Bootstraps an <see cref="Abstractions"/> implementation.
/// </summary>
void Bootstrap();
}
}