fix: update go.sour.is/pkg
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
xuu
2023-09-29 10:21:29 -06:00
parent ee45a0fd49
commit bdda63edac
5 changed files with 70 additions and 465 deletions

View File

@@ -22,7 +22,7 @@ type state struct {
}
type streamer struct {
state *locker.Locked[state]
state *locker.Locked[*state]
up driver.Driver
}
@@ -216,7 +216,7 @@ type position struct {
type subscription struct {
topic string
position *locker.Locked[position]
position *locker.Locked[*position]
events driver.EventLog
unsub func(context.Context) error