14 lines
144 B
Go
14 lines
144 B
Go
package events
|
|
|
|
import (
|
|
"esdi/tui/internal/models"
|
|
)
|
|
|
|
type Error struct {
|
|
Error error
|
|
}
|
|
|
|
type WindowCreated struct {
|
|
Window models.Window
|
|
}
|