package common const UserBucket = "users" const TodoBucket = "todo" const AuthHeader = "Authorization" // ANSI color codes for terminal output const ( ColorReset = "\033[0m" ColorRed = "\033[31m" ColorGreen = "\033[32m" ColorYellow = "\033[33m" ColorBlue = "\033[34m" ) // statuses const ( NotStarted = "not started" Done = "done" WIP = "in progress" Pending = "pending" Blocked = "blocked" Failed = "failed" )