Skip to content
Snippets Groups Projects
status_message.go 140 B
package statusscreen

import (
	"time"
)

type StatusMessage struct {
	Source   string
	LogLevel int
	Message  string
	Time     time.Time
}