2021-10-20 22:13:02 +00:00
|
|
|
// Copyright © 2019-2021 Ettore Di Giacinto <mudler@gentoo.org>
|
2019-11-22 22:12:03 +00:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package client
|
|
|
|
|
|
|
|
type RepoData struct {
|
2020-02-02 23:58:55 +00:00
|
|
|
Urls []string
|
|
|
|
Authentication map[string]string
|
2021-03-11 16:04:26 +00:00
|
|
|
Verify bool
|
2019-12-30 21:51:51 +00:00
|
|
|
}
|