2026-07-24 11:59:39 +01:00
|
|
|
package main
|
|
|
|
|
|
2026-07-24 12:10:16 +01:00
|
|
|
/*
|
|
|
|
|
* -=[ 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2026-07-24 11:59:39 +01:00
|
|
|
func main() {
|
2026-07-24 12:10:16 +01:00
|
|
|
// TODO: build satellite service
|
2026-07-24 11:59:39 +01:00
|
|
|
}
|