# Functions

GetEnv 환경변수 가져오기 key: 환경변수명 def: 기본값 return: string: 환경변수값, 키가 없으면 def 값 bool: 키가 있으면 true, 없으면 false.
GetEnvBool 환경변수 가져오기 key: 환경변수명 def: 기본값 return: bool: 환경변수값, 키가 없으면 def 값, 1,True,true-->true, 그외 false bool: 키가 있으면 true, 없거나 bool 로 변환할 수 없으면 false.
GetEnvFloat32 환경변수 가져오기 key: 환경변수명 def: 기본값 return: float32: 환경변수값, 키가 없으면 def 값 bool: 키가 있으면 true, 없거나 float32 로 변환할 수 없으면 false.
GetEnvFloat64 환경변수 가져오기 key: 환경변수명 def: 기본값 return: float64: 환경변수값, 키가 없으면 def 값 bool: 키가 있으면 true, 없거나 float64 로 변환할 수 없으면 false.
GetEnvInt 환경변수 가져오기 key: 환경변수명 def: 기본값 return: int: 환경변수값, 키가 없으면 def 값 bool: 키가 있으면 true, 없거나 int 로 변환할 수 없으면 false.
GetEnvInt64 환경변수 가져오기 key: 환경변수명 def: 기본값 return: int64: 환경변수값, 키가 없으면 def 값 bool: 키가 있으면 true, 없거나 int64 로 변환할 수 없으면 false.
GetEnvTimeDuration 환경변수 가져오기 key: 환경변수명 def: 기본값 return: time.Duration: 환경변수값, 키가 없으면 def 값 bool: 키가 있으면 true, 없거나 duration 으로 변환할 수 없으면 false.
GetEnvUInt 환경변수 가져오기 key: 환경변수명 def: 기본값 return: uint: 환경변수값, 키가 없으면 def 값 bool: 키가 있으면 true, 없거나 uint 로 변환할 수 없으면 false.
GetEnvUInt64 환경변수 가져오기 key: 환경변수명 def: 기본값 return: uint64: 환경변수값, 키가 없으면 def 값 bool: 키가 있으면 true, 없거나 uint64 로 변환할 수 없으면 false.
SetEnv 환경변수 설정 key: 환경변수명 value: 환경변수값.