File: input.go

package info (click to toggle)
fever 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 920 kB
  • sloc: sh: 41; makefile: 18
file content (13 lines) | stat: -rw-r--r-- 257 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
package input

// DCSO FEVER
// Copyright (c) 2017, DCSO GmbH

// Input is an interface describing the behaviour for a component to
// handle events parsed from EVE input.
type Input interface {
	GetName() string
	Run()
	SetVerbose(bool)
	Stop(chan bool)
}