comparison pkg/imports/ufa.go @ 4179:a376351d2774

Another round of doc strings to make 'golint' a little bit more happy with the imports package.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 05 Aug 2019 18:14:41 +0200
parents 8b75ac5e243e
children 49012340336c
comparison
equal deleted inserted replaced
4178:51e90370eced 4179:a376351d2774
30 30
31 const UFAJobKind JobKind = "ufa" 31 const UFAJobKind JobKind = "ufa"
32 32
33 type ufaJobCreator struct{} 33 type ufaJobCreator struct{}
34 34
35 func init() { 35 func init() { RegisterJobCreator(UFAJobKind, ufaJobCreator{}) }
36 RegisterJobCreator(UFAJobKind, ufaJobCreator{})
37 }
38 36
39 func (ufaJobCreator) Description() string { 37 func (ufaJobCreator) Description() string {
40 return "uploaded fairway availability" 38 return "uploaded fairway availability"
41 } 39 }
42 40