solana_exporter/pkg/rpc/rpc_test.go

14 lines
178 B
Go

package rpc
import (
"github.com/asymmetric-research/solana-exporter/pkg/slog"
"os"
"testing"
)
func TestMain(m *testing.M) {
slog.Init()
code := m.Run()
os.Exit(code)
}