16 lines
320 B
Go
16 lines
320 B
Go
package pluginhost_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/Silo-Server/silo-server/internal/pluginhost"
|
|
)
|
|
|
|
func TestConfig_AcceptsEventPublisherAndLibraryLister(t *testing.T) {
|
|
// Compile-time assertion that pluginhost.Config has these fields.
|
|
_ = pluginhost.Config{
|
|
EventPublisher: nil,
|
|
LibraryLister: nil,
|
|
}
|
|
}
|