blasphem/pkg/bus/bus.go

13 lines
93 B
Go
Raw Normal View History

2022-09-25 11:42:36 -04:00
package bus
2022-09-26 15:00:21 -04:00
import ()
2022-09-25 11:42:36 -04:00
type Bus struct {
}
func New() *Bus {
2022-09-26 15:00:21 -04:00
bus := &Bus{}
2022-09-25 11:42:36 -04:00
return bus
}