Files
Alessandro RosandGitHub e14ada6f4b normalize authentication error messages (#5421) (#5959)
Log authentication errors as soon as possible, use the "warn" level,
use the same message whatever the author or protocol.
2026-07-19 10:04:17 +02:00

11 lines
204 B
Go

package defs
import "github.com/bluenviron/mediamtx/internal/logger"
// Reader is an entity that can read a stream.
type Reader interface {
logger.Writer
Close()
APIReaderDescribe() *APIPathReader
}