forked from Silverfish/proton-bridge
10 lines
110 B
Go
10 lines
110 B
Go
package events
|
|
|
|
type Event interface {
|
|
_isEvent()
|
|
}
|
|
|
|
type eventBase struct{}
|
|
|
|
func (eventBase) _isEvent() {}
|