Versions in this module Expand all Collapse all v0 v0.1.0 Mar 25, 2026 Changes in this version + func MakeStartable(startFunc func() error, stopFunc func()) *startableWrapper + type Startable struct + func NewStartable(startables ...StartableIfc) *Startable + func (r *Startable) AddStartables(startables ...StartableIfc) *Startable + func (r *Startable) IsStarted() bool + func (r *Startable) Start() error + func (r *Startable) Stop() + type StartableIfc interface + AddStartables func(startables ...StartableIfc) *Startable + IsStarted func() bool + Start func() error + Stop func()