Skip to content

Commit

Permalink
Merge pull request #1707 from atoulme/add_proc_mountinfo
Browse files Browse the repository at this point in the history
[common] add HOST_PROC_MOUNTINFO to EnvMap
  • Loading branch information
shirou authored Sep 15, 2024
2 parents 7802a18 + 811185d commit 6c06ac9
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 6c06ac9

Please sign in to comment.