diff --git a/cmd/satellite/main.go b/cmd/satellite/main.go index df4ea4b..a67212e 100644 --- a/cmd/satellite/main.go +++ b/cmd/satellite/main.go @@ -1,5 +1,19 @@ package main +/* + * -=[ SATELLITE ]=- + * + * a high-uptime companion service for stream-tools, tracking information that + * would be unwieldy to track all the time on an end device. + * + * current use-case: fetching and storing the latest twitch subscribers and + * cheers. + * + * should be able to utilise a bunch of existing code under /twitch, then just + * poke out an API for querying the information. SSE and websockets are + * unnecessary; stream-tools already has this. we just need a "kick-start" payload. + */ + func main() { - // TODO: build satellite service for offline-fetching subscribers and cheers + // TODO: build satellite service }