view pkg/controllers/stretches.go @ 3306:bf5ab7a069e2

More compact logging of GeoServer booting.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Fri, 17 May 2019 11:24:06 +0200
parents 60f25cbe77fb
children 2b5c22f6bb1f
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) 2099 by via donau
//   – Österreichische Wasserstraßen-Gesellschaft mbH
// Software engineering by Intevation GmbH
//
// Author(s):
//  * Sascha L. Teichmann <sascha.teichmann@intevation.de>

package controllers

import (
	"database/sql"
	"net/http"
)

func stretchAvailabilty(
	_ interface{},
	req *http.Request,
	conn *sql.Conn,
) (jr JSONResult, err error) {
	// TODO: Implement me!
	return
}

func stretchAvailableFairwayDepth(rw http.ResponseWriter, req *http.Request) {
	// TODO: Implement me!
}