Documentation ¶ Index ¶ func Find(name string) (string, error) type Manager func NewManager(filePath, key string) *Manager func (m *Manager) Get() (string, error) func (m *Manager) Update(value string) error Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ func Find ¶ added in v0.1.0 func Find(name string) (string, error) Find searches for the given filename in the current directory and parent directories. If found, it returns the absolute path. If not found, it returns an error. Types ¶ type Manager ¶ type Manager struct { // contains filtered or unexported fields } func NewManager ¶ func NewManager(filePath, key string) *Manager func (*Manager) Get ¶ added in v0.0.2 func (m *Manager) Get() (string, error) func (*Manager) Update ¶ func (m *Manager) Update(value string) error Source Files ¶ View all Source files env.go Click to show internal directories. Click to hide internal directories.