Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CircualDependencyProjectSortError ¶
type CircualDependencyProjectSortError struct {
// Environment is the name of the environment the project sorting failed for
Environment string `json:"environment"`
// Project is the name of the project that is part of a cycle
Project string `json:"project"`
// DependsOnProjects is a list of project IDs the Project depends on
DependsOnProjects []string `json:"dependsOnProjects"`
}
func (CircualDependencyProjectSortError) Error ¶
func (e CircualDependencyProjectSortError) Error() string
type CircularDependencyConfigSortError ¶
type CircularDependencyConfigSortError struct {
// Location (coordinate) of the config.Config which part of a cycle
Location coordinate.Coordinate `json:"location"`
// Environment is the name of the environment the project sorting failed for
Environment string `json:"environment"`
// DependsOn is a list of coordinates the configuration (Location) depends on
DependsOn []coordinate.Coordinate `json:"dependsOn"`
}
func (CircularDependencyConfigSortError) Error ¶
func (e CircularDependencyConfigSortError) Error() string
Click to show internal directories.
Click to hide internal directories.