hdmistat/cmd/hdmistat/main.go
2025-07-24 14:32:50 +02:00

11 lines
181 B
Go

// Package main is the entry point for the hdmistat command-line tool
package main
import (
"git.eeqj.de/sneak/hdmistat/internal/hdmistat"
)
func main() {
hdmistat.CLIEntry()
}