RaspberryIO_26/Unosquare.RaspberryIO.Abstractions/IBootstrap.cs
2019-12-06 22:24:34 +01:00

12 lines
328 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();
}
}