11 lines
181 B
Go
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()
|
|
}
|