8 lines
230 B
Go
8 lines
230 B
Go
package apt
|
|
|
|
// Config describes which parts of an APT repository to mirror.
|
|
type Config struct {
|
|
Suite string `json:"suite"`
|
|
Components []string `json:"components"`
|
|
Architectures []string `json:"architectures"`
|
|
}
|