unexport members of private structs

This commit is contained in:
aler9 2021-10-27 21:01:00 +02:00
parent 07db2ce0ef
commit ab70f946b0
19 changed files with 287 additions and 287 deletions

View file

@ -2,11 +2,11 @@ package core
// source is an entity that can provide a stream, statically or dynamically.
type source interface {
OnSourceAPIDescribe() interface{}
onSourceAPIDescribe() interface{}
}
// sourceStatic is an entity that can provide a static stream.
type sourceStatic interface {
source
Close()
close()
}