// Package garage contains helper functions and types which are useful for // setting up garage configs, processes, and deployments. package garage const ( // Region is the region which garage is configured with. Region = "garage" // GlobalBucket is the name of the global garage bucket which is // accessible to all hosts in the network. GlobalBucket = "cryptic-net-global" // ReplicationFactor indicates the replication factor set on the garage // cluster. We currently only support a factor of 3. ReplicationFactor = 3 )