Semble TUI
0

Configure Feed

Select the types of activity you want to include in your feed.

semble-tui / main.go
325 B 21 lines
1package main 2 3import ( 4 "fmt" 5 "os" 6 7 "tangled.org/pdewey.com/semble-tui/internal/app" 8) 9 10func main() { 11 apiKey := os.Getenv("SEMBLE_API_KEY") 12 if apiKey == "" { 13 fmt.Fprintln(os.Stderr, "SEMBLE_API_KEY is required") 14 os.Exit(2) 15 } 16 17 if err := app.Run(apiKey); err != nil { 18 fmt.Fprintln(os.Stderr, err) 19 os.Exit(1) 20 } 21}