From 57533a44cb16f6e3df5b4c7977c20413fc3baee0 Mon Sep 17 00:00:00 2001 From: Tyler Williams Date: Sat, 13 Jan 2024 09:24:26 -0800 Subject: [PATCH] Update tan.go to export MultiplexedLogFactory This makes MultiplexedLogFactory usable in the external API. --- plugin/tan/tan.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugin/tan/tan.go b/plugin/tan/tan.go index b6f236038..10f4b005a 100644 --- a/plugin/tan/tan.go +++ b/plugin/tan/tan.go @@ -19,4 +19,7 @@ import ( ) // Factory is the factory variable used to create tan instances. -var Factory = tan.Factory +var ( + Factory = tan.Factory + MultiplexedLogFactory = tan.MultiplexedLogFactory +)