namespace Unosquare.RaspberryIO.Abstractions { /// /// Interface for bootstrapping an implementation. /// public interface IBootstrap { /// /// Bootstraps an implementation. /// void Bootstrap(); } }