comparison pkg/imports/wg.go @ 5565:ade07a3f2cfd

Forget to change signature of some imports.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Tue, 08 Mar 2022 17:38:48 +0100
parents 59a99655f34d
children e1936db6db8e
comparison
equal deleted inserted replaced
5564:aaa9e658cabd 5565:ade07a3f2cfd
39 // should validate certificates or not. 39 // should validate certificates or not.
40 Insecure bool `json:"insecure"` 40 Insecure bool `json:"insecure"`
41 } 41 }
42 42
43 // Description gives a short info about relevant facts of this import. 43 // Description gives a short info about relevant facts of this import.
44 func (wg *WaterwayGauge) Description() (string, error) { 44 func (wg *WaterwayGauge) Description([]string) (string, error) {
45 return wg.URL, nil 45 return wg.URL, nil
46 } 46 }
47 47
48 // WGJobKind is the unique name of this import job type. 48 // WGJobKind is the unique name of this import job type.
49 const WGJobKind JobKind = "wg" 49 const WGJobKind JobKind = "wg"