blasphem/pkg/bus/bus.go
2022-09-26 15:00:21 -04:00

12 lines
93 B
Go

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