File: generator.go

package info (click to toggle)
golang-github-nicholas-fedor-shoutrrr 0.8.17-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,332 kB
  • sloc: sh: 61; makefile: 5
file content (6 lines) | stat: -rw-r--r-- 231 bytes parent folder | download
1
2
3
4
5
6
package types

// Generator is the interface for tools that generate service configurations from a user dialog.
type Generator interface {
	Generate(service Service, props map[string]string, args []string) (ServiceConfig, error)
}