Skip to content

Commit

Permalink
Update getenv.go
Browse files Browse the repository at this point in the history
  • Loading branch information
obalunenko authored Mar 25, 2023
1 parent f6f6fa5 commit 5af268f
Showing 1 changed file with 24 additions and 17 deletions.
41 changes: 24 additions & 17 deletions getenv.go
Original file line number Diff line number Diff line change
@@ -1,23 +1,30 @@
// Package getenv provides functionality for loading environment variables and parse them into go builtin types.
//
// Types supported:
// - string
// - []string
// - int
// - []int
// - int64
// - []int64
// - uint64
// - []uint64
// - uint
// - []uint
// - uint32
// - []uint32
// - float64
// - []float64
// - time.Time
// - time.Duration
// - bool
// - string
// - []string
// - int
// - []int
// - int8
// - []int8
// - int16
// - []int16
// - int32
// - []int32
// - int64
// - []int64
// - uint64
// - []uint64
// - uint
// - []uint
// - uint32
// - []uint32
// - float64
// - []float64
// - time.Time
// - []time.Time
// - time.Duration
// - bool
package getenv

import (
Expand Down

0 comments on commit 5af268f

Please sign in to comment.