sway/event_type.go
2023-10-07 16:21:49 +02:00

10 lines
141 B
Go

package sway
type EventType string
const (
EventTypeWindow EventType = "window"
EventTypeWorkspace EventType = "workspace"
// TODO
)