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