Select the types of activity you want to include in your feed.
1//go:build !windows 2 3package main 4 5import ( 6 "os" 7 8 "golang.org/x/term" 9) 10 11func colorSupported() bool { 12 return term.IsTerminal(int(os.Stdout.Fd())) 13}