x/database/doc.go

16 lines
187 B
Go
Raw Normal View History

package database
2020-06-10 16:04:25 -07:00
/*
Example usage:
2020-06-10 16:04:25 -07:00
ctx, _ := context.WithCancel(context.Background())
dba = &db.Actor{
DB: s.db,
ActionChan: make(chan db.Func),
}
2020-06-10 16:04:25 -07:00
go dba.Run(ctx)
*/