view pkg/models/search.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 fdff2de616ad
children a244b18cb916
line wrap: on
line source

package models

type (
	SearchRequest struct {
		SearchString string `json:"string"`
	}
)