mirror of
https://github.com/unpoller/unpoller.git
synced 2026-07-22 05:52:23 -04:00
15 lines
199 B
Go
15 lines
199 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/davidnewhall/unifi-poller/pkg/poller"
|
|
)
|
|
|
|
// Keep it simple.
|
|
func main() {
|
|
if err := poller.New().Start(); err != nil {
|
|
log.Fatalln("[ERROR]", err)
|
|
}
|
|
}
|