2019-12-06 22:24:34 +01:00
|
|
|
|
namespace Unosquare.RaspberryIO.Abstractions {
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface for bootstrapping an <see cref="Abstractions"/> implementation.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IBootstrap {
|
2019-12-04 18:57:18 +01:00
|
|
|
|
/// <summary>
|
2019-12-06 22:24:34 +01:00
|
|
|
|
/// Bootstraps an <see cref="Abstractions"/> implementation.
|
2019-12-04 18:57:18 +01:00
|
|
|
|
/// </summary>
|
2019-12-06 22:24:34 +01:00
|
|
|
|
void Bootstrap();
|
|
|
|
|
}
|
2019-12-04 18:57:18 +01:00
|
|
|
|
}
|