dont make it directional

This commit is contained in:
Colin Henry 2020-09-04 20:24:37 -07:00
parent 4b8fd0b78d
commit 07db4cf999

View File

@ -9,7 +9,7 @@ type Func func(db *sql.DB)
type Actor struct {
DB *sql.DB
ActionChan <-chan Func
ActionChan chan Func
}
func (a *Actor) Run(ctx context.Context) error {