85b8d804c8
- Seperate the config from Permissions() - Add YAML tags for the fields
10 lines
250 B
Go
10 lines
250 B
Go
package config
|
|
|
|
type File struct {
|
|
Encoding string `yaml:"-"`
|
|
Content string `yaml:"content"`
|
|
Owner string `yaml:"owner"`
|
|
Path string `yaml:"path"`
|
|
RawFilePermissions string `yaml:"permissions"`
|
|
}
|