mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-17 23:56:56 +00:00
10 lines
110 B
Go
10 lines
110 B
Go
package events
|
|
|
|
type Event interface {
|
|
_isEvent()
|
|
}
|
|
|
|
type eventBase struct{}
|
|
|
|
func (eventBase) _isEvent() {}
|