blasphem/pkg/bus/bus.go

15 lines
96 B
Go
Raw Normal View History

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