mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-08-14 14:40:23 +02:00
10 lines
247 B
Go
10 lines
247 B
Go
package tea
|
|
|
|
// FocusMsg represents a terminal focus message.
|
|
// This occurs when the terminal gains focus.
|
|
type FocusMsg struct{}
|
|
|
|
// BlurMsg represents a terminal blur message.
|
|
// This occurs when the terminal loses focus.
|
|
type BlurMsg struct{}
|