aboutsummaryrefslogtreecommitdiff
path: root/device.go
blob: eff13338e8e983b0624156e4a634732f1bcca806 (plain)
1
2
3
4
5
6
7
8
package main

import "bufio"

type Device interface {
	Close()
	Handle() *bufio.ReadWriter
}