Ocean/Log/Device/Device.go

12 lines
194 B
Go
Raw Normal View History

package Device
import (
"github.com/SommerEngineering/Ocean/Log/Meta"
)
2015-06-17 15:44:52 +00:00
// The interface for every logging device.
type Device interface {
Log(logEntries []Meta.Entry)
Flush()
}