kleinTodo/common/const.go
Darius klein bb685be5d5
All checks were successful
build and deploy kleinTodo / build (push) Successful in 12s
todo v1 beta
2025-08-23 21:51:33 +02:00

26 lines
456 B
Go

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"
)