package common import ( "bufio" ) type Signal string func Parse(scanner bufio.Scanner) Signal { scanner.Scan() return Signal(scanner.Text()) }