Add network interface discovery and monitoring

This commit is contained in:
Ian Gulliver
2025-11-28 15:18:22 -08:00
parent 1374351472
commit 1739b7fb87
3 changed files with 106 additions and 0 deletions

10
cmd/tendrils/main.go Normal file
View File

@@ -0,0 +1,10 @@
package main
import (
"github.com/gopatchy/tendrils"
)
func main() {
t := tendrils.New()
t.Run()
}