view pkg/models/surveys.go @ 991:a301d240905f

Decoupled import job creation and job execution with a factory function. This is needed for persistence purposes.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 22 Oct 2018 10:45:17 +0200
parents 98a7776100fb
children a244b18cb916
line wrap: on
line source

package models

type (
	Survey struct {
		BottleneckId string `json:"bottleneck_id"`
		DateInfo     string `json:"date_info"`
	}
)