view pkg/models/bn.go @ 1534:165f31b71042

Bottleneck import: Added /api/imports/bottleneck POST endpoint.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Fri, 07 Dec 2018 14:54:39 +0100
parents
children a0982c38eac0
line wrap: on
line source

// This is Free Software under GNU Affero General Public License v >= 3.0
// without warranty, see README.md and license for details.
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// License-Filename: LICENSES/AGPL-3.0.txt
//
// Copyright (C) 2018 by via donau
//   – Österreichische Wasserstraßen-Gesellschaft mbH
// Software engineering by Intevation GmbH
//
// Author(s):
//  * Sascha L. Teichmann <sascha.teichmann@intevation.de>

package models

type BottleneckImport struct {
	URL      string `json:"url"`
	Insecure bool   `json:"insecure"`
}