mirror of
https://github.com/foomo/sesamy-go.git
synced 2025-10-16 12:35:43 +00:00
7 lines
150 B
Go
7 lines
150 B
Go
package sesamy
|
|
|
|
// AnyEvent casting is required as castings like Event[any](pageView) do not work.
|
|
type AnyEvent interface {
|
|
AnyEvent() Event[any]
|
|
}
|