comparison pkg/models/diff.go @ 5601:1222b777f51f

Made golint finally happy.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Sat, 06 Aug 2022 02:09:57 +0200
parents c4242b9d59fe
children
comparison
equal deleted inserted replaced
5600:9967a78e43f4 5601:1222b777f51f
11 // Author(s): 11 // Author(s):
12 // * Sascha L. Teichmann <sascha.teichmann@intevation.de> 12 // * Sascha L. Teichmann <sascha.teichmann@intevation.de>
13 13
14 package models 14 package models
15 15
16 // DiffCalculationInput is used to calculate
17 // the difference of the sounding results at
18 // the same bottlenec at different times.
16 type DiffCalculationInput struct { 19 type DiffCalculationInput struct {
17 Minuend Date `json:"minuend"` 20 Minuend Date `json:"minuend"`
18 Subtrahend Date `json:"subtrahend"` 21 Subtrahend Date `json:"subtrahend"`
19 Bottleneck string `json:"bottleneck"` 22 Bottleneck string `json:"bottleneck"`
20 } 23 }