Skip to content

Commit

Permalink
[common] add HOST_PROC_MOUNTINFO to EnvMap
Browse files Browse the repository at this point in the history
  • Loading branch information
atoulme committed Sep 10, 2024
1 parent 7841574 commit 811185d
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions common/env.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,14 @@ type EnvKeyType string
var EnvKey = EnvKeyType("env")

const (
HostProcEnvKey EnvKeyType = "HOST_PROC"
HostSysEnvKey EnvKeyType = "HOST_SYS"
HostEtcEnvKey EnvKeyType = "HOST_ETC"
HostVarEnvKey EnvKeyType = "HOST_VAR"
HostRunEnvKey EnvKeyType = "HOST_RUN"
HostDevEnvKey EnvKeyType = "HOST_DEV"
HostRootEnvKey EnvKeyType = "HOST_ROOT"
HostProcEnvKey EnvKeyType = "HOST_PROC"
HostSysEnvKey EnvKeyType = "HOST_SYS"
HostEtcEnvKey EnvKeyType = "HOST_ETC"
HostVarEnvKey EnvKeyType = "HOST_VAR"
HostRunEnvKey EnvKeyType = "HOST_RUN"
HostDevEnvKey EnvKeyType = "HOST_DEV"
HostRootEnvKey EnvKeyType = "HOST_ROOT"
HostProcMountinfo EnvKeyType = "HOST_PROC_MOUNTINFO"
)

type EnvMap map[EnvKeyType]string

0 comments on commit 811185d

Please sign in to comment.