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