Skip to content

Commit

Permalink
comment updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sambukowski committed Aug 6, 2024
1 parent 1d7448c commit d0f8dfe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion modules/cli/cmd/devrunner/config/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@ import (

// BaseConfig is a map of string key-value pairs that represent the base
// configuration for all services in the Astria stack. The key-values pairs are
// also parsed into environment variables for the services to consume.
// also parsed into environment variables for the services to consume. A map was
// used here to allow for dynamically adding new configuration options to the
// config toml file.
type BaseConfig map[string]string

// NewBaseConfig returns a BaseConfig with default values.
func NewBaseConfig(instanceName string) BaseConfig {
homePath, err := os.UserHomeDir()
if err != nil {
Expand Down

0 comments on commit d0f8dfe

Please sign in to comment.