package bus import () type Bus struct { } func New() *Bus { bus := &Bus{} return bus }