New types for the internal representation of the shell init configs, which currently consists of files and key-value pairs for environment global variables.
11 lines
156 B
Go
11 lines
156 B
Go
package shell
|
|
|
|
type EnvironmentVariable struct {
|
|
Key string
|
|
Value string
|
|
}
|
|
|
|
type InitFile struct {
|
|
Filename string
|
|
Variables []EnvironmentVariable
|
|
}
|