Make DefaultChanSize an exported var so it can be modified

This commit is contained in:
Connor Gorman 2020-04-03 17:58:52 -07:00
parent d911254deb
commit aa57a36b0e

View File

@ -46,7 +46,9 @@ const (
Deleted EventType = "DELETED"
Bookmark EventType = "BOOKMARK"
Error EventType = "ERROR"
)
var (
DefaultChanSize int32 = 100
)