summaryrefslogtreecommitdiff
path: root/README-goreadme.md
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2023-04-28 10:35:57 -0500
committerJeff Carr <[email protected]>2023-04-28 10:35:57 -0500
commit923f7721cca66d84dea77ffd9640d793803142ee (patch)
tree824c9a2b83f574c37279c8526a1566035e78c2bb /README-goreadme.md
parent03942de00e133daf59da8ed3b6c3e71ce8afe316 (diff)
s/Config/me/ to remove direct access to anything
since most everything needs to be passed to the toolkits everything should be accessed via func()'s Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'README-goreadme.md')
-rw-r--r--README-goreadme.md9
1 files changed, 2 insertions, 7 deletions
diff --git a/README-goreadme.md b/README-goreadme.md
index 3e458b5..abf7acd 100644
--- a/README-goreadme.md
+++ b/README-goreadme.md
@@ -107,12 +107,6 @@ external things which might be useful
* [GO Style Guide]
```
-## Variables
-
-```golang
-var Config guiConfig
-```
-
## Functions
### func [DebugWidgetWindow](/debugWidget.go#L52)
@@ -152,12 +146,13 @@ Creates a window helpful for debugging this package
The window is destroyed and the application exits
TODO: properly exit the plugin since Quit() doesn't do it
-### func [Watchdog](/watchdog.go#L15)
+### func [Watchdog](/watchdog.go#L16)
`func Watchdog()`
This program sits here.
If you exit here, the whole thing will os.Exit()
+TODO: use Ticker
This goroutine can be used like a watchdog timer