File: config_prop.go

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

// ConfigProp interface is used to de-/serialize structs from/to a string representation.
type ConfigProp interface {
	SetFromProp(propValue string) error
	GetPropValue() (string, error)
}