13 lines
269 B
Go
13 lines
269 B
Go
// all environment variables including default values put here
|
|
|
|
package pkg
|
|
|
|
const (
|
|
Logo = "🦞"
|
|
// AppName is the name of the app
|
|
AppName = "PicoClaw"
|
|
|
|
PicoClawHome = "PICOCLAW_HOME"
|
|
DefaultPicoClawHome = ".picoclaw"
|
|
WorkspaceName = "workspace"
|
|
)
|