Skip to content

Instantly share code, notes, and snippets.

@glober-vaibhav
Created January 9, 2023 13:01
Show Gist options
  • Save glober-vaibhav/8e4376767a5196b267a431f95f1c6e9c to your computer and use it in GitHub Desktop.
Save glober-vaibhav/8e4376767a5196b267a431f95f1c6e9c to your computer and use it in GitHub Desktop.
// Agent is a simple pub/sub agent
type Agent struct {
mu sync.Mutex
subs map[string][]chan string
quit chan struct{}
closed bool
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment