add TODOs

This commit is contained in:
Sam Lewis
2022-10-10 00:21:14 -04:00
parent 8be48be299
commit 689a6ce4d3
2 changed files with 13 additions and 0 deletions

6
internal/http/http.go Normal file
View File

@@ -0,0 +1,6 @@
// http is used to interact with the home assistant
// REST API, currently only for retrieving state for
// a single entity_id
package http
// TODO: impl http struct, should be initialized as part of App()

View File

@@ -0,0 +1,7 @@
// websocket is used to interact with the Home Assistant
// websocket API. All HA interaction is done via websocket
// except for cases explicitly called out in http package
// documentation.
package websocket
// TODO: move existing websocket code here