Skip to content

Instantly share code, notes, and snippets.

View Wondertan's full-sized avatar

Hlib Kanunnikov Wondertan

View GitHub Profile
@Wondertan
Wondertan / events.go
Created February 13, 2020 13:20
Minimalistic event system in abstract session.
package session
import (
"context"
)
type EventType string
type Event interface {
Type() EventType