From aa1bc3f4a45fb98e79d85162a15792c4c8ed87e8 Mon Sep 17 00:00:00 2001 From: Sam Lewis Date: Mon, 12 Dec 2022 08:38:45 -0500 Subject: [PATCH] update docs --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 31bffed..50b509c 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ go get saml.dev/gome-assistant ### Write your automations -Check out `example/example.go` for an example of the 3 types of automations — schedules, entity listeners, and event listeners. +Check out [`example/example.go`](./example/example.go) for an example of the 3 types of automations — schedules, entity listeners, and event listeners. > â„šī¸ Instead of copying and pasting, try typing it yourself to see how autocomplete guides you through the setup using a builder pattern. @@ -48,6 +48,7 @@ app := ga.NewApp("0.0.0.0:8123") app.RegisterSchedules(...) app.RegisterEntityListeners(...) app.RegisterEventListeners(...) +app.RegisterIntervals(...) app.Start() ```