Documentation ¶
Index ¶
- func Exclude(exclusions JSONExclusions, entry, path string) []string
- func ReadEngine(filePath string) (aflag.Engine, error)
- func WriteAddons(fileName string, data JSONAddons) error
- func WriteEngine(fileName string, data aflag.Engine) error
- func WriteExclusions(fileName string, data JSONExclusions) error
- func WriteFormats(fileName string, data JSONFormats) error
- func WriteLoadOrders(fileName string, data JSONLoadOrder) error
- func WriteRenames(fileName string, data JSONRenames) error
- type Addon
- type Exclusion
- type JSONAddons
- type JSONExclusions
- type JSONFormats
- type JSONLoadOrder
- type JSONRenames
- type LoadOrder
- type Rename
- type Set
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Exclude ¶
func Exclude(exclusions JSONExclusions, entry, path string) []string
func WriteAddons ¶
func WriteAddons(fileName string, data JSONAddons) error
func WriteExclusions ¶
func WriteExclusions(fileName string, data JSONExclusions) error
func WriteFormats ¶
func WriteFormats(fileName string, data JSONFormats) error
func WriteLoadOrders ¶
func WriteLoadOrders(fileName string, data JSONLoadOrder) error
func WriteRenames ¶
func WriteRenames(fileName string, data JSONRenames) error
Types ¶
type JSONAddons ¶
type JSONAddons struct {
JSON []Addon `json:"addons"`
}
func ReadAddons ¶
func ReadAddons(filePath string) (JSONAddons, error)
type JSONExclusions ¶
type JSONExclusions struct {
JSON []Exclusion `json:"exclusions"`
}
func ReadExclusions ¶
func ReadExclusions(filePath string) (JSONExclusions, error)
type JSONFormats ¶
type JSONFormats struct {
JSON []string `json:"formats"`
}
func ReadFormats ¶
func ReadFormats(filePath string) (JSONFormats, error)
type JSONLoadOrder ¶
type JSONLoadOrder struct {
JSON []LoadOrder `json:"loadOrder"`
}
func ReadLoadOrders ¶
func ReadLoadOrders(filePath string) (JSONLoadOrder, error)
type JSONRenames ¶
type JSONRenames struct {
JSON []Rename `json:"renames"`
}
func ReadRenames ¶
func ReadRenames(filePath string) (JSONRenames, error)
type Set ¶
type Set struct { LoadOrder JSONLoadOrder Addons JSONAddons Renames JSONRenames Exclusions JSONExclusions }
Click to show internal directories.
Click to hide internal directories.