mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2026-02-06 00:58:33 +00:00
10 lines
110 B
Go
10 lines
110 B
Go
package events
|
|
|
|
type Event interface {
|
|
_isEvent()
|
|
}
|
|
|
|
type eventBase struct{}
|
|
|
|
func (eventBase) _isEvent() {}
|