8 lines
90 B
Go
8 lines
90 B
Go
package events
|
|
|
|
import "fmt"
|
|
|
|
func typeKey(v any) string {
|
|
return fmt.Sprintf("%T", v)
|
|
}
|