1 2 3 4 5 6 7 8 9
package sls import "io" // LogTarget is something that SLS will write logs to. type LogTarget interface { Name() string io.WriteCloser }