sway/event_type.go

10 lines
141 B
Go
Raw Normal View History

2023-10-07 16:21:49 +02:00
package sway
type EventType string
const (
EventTypeWindow EventType = "window"
EventTypeWorkspace EventType = "workspace"
// TODO
)