Initial commit

This commit is contained in:
nemunaire 2022-10-21 23:54:17 +02:00
commit 0a854f708a
17 changed files with 796 additions and 0 deletions

21
config/env.go Normal file
View file

@ -0,0 +1,21 @@
package config
import (
"fmt"
"os"
"strings"
)
// FromEnv analyzes all the environment variables to find each one
// starting by GUSTUS_
func (c *Config) FromEnv() error {
for _, line := range os.Environ() {
if strings.HasPrefix(line, "IDFM_") {
err := c.parseLine(line)
if err != nil {
return fmt.Errorf("error in environment (%q): %w", line, err)
}
}
}
return nil
}